org.nervousync.annotations.beans.OutputConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-jdk11 Show documentation
Show all versions of utils-jdk11 Show documentation
Java utility collections, development by Nervousync Studio (NSYC)
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;
}