All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nervousync.annotations.beans.OutputConfig Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package org.nervousync.annotations.beans;

import org.nervousync.commons.core.Globals;
import org.nervousync.utils.StringUtils;

import java.lang.annotation.*;

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE})
public @interface OutputConfig {
    StringUtils.StringType type() default StringUtils.StringType.SIMPLE;

    boolean formatted() default false;

    String encoding() default Globals.DEFAULT_ENCODING;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy