public enum EnumAnnotationFlag extends java.lang.Enum<EnumAnnotationFlag>
| Enum Constant and Description |
|---|
DO_NOT_ATTEMPT_TO_PRINT_IMAGES
The D o_ no t_ attemp t_ t o_ prin t_ images.
|
PRINT_IMAGES_WITHOUT_ANNOTATION
The PRIN t_ image s_ withou t_ annotation.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumAnnotationFlag |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumAnnotationFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumAnnotationFlag PRINT_IMAGES_WITHOUT_ANNOTATION
public static final EnumAnnotationFlag DO_NOT_ATTEMPT_TO_PRINT_IMAGES
public static EnumAnnotationFlag[] values()
for (EnumAnnotationFlag c : EnumAnnotationFlag.values()) System.out.println(c);
public static EnumAnnotationFlag valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()