public enum AnnotationVisibility extends java.lang.Enum<AnnotationVisibility> implements ToHuman
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toHuman()
Return the "human" string form of this instance.
|
static AnnotationVisibility |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationVisibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationVisibility RUNTIME
public static final AnnotationVisibility BUILD
public static final AnnotationVisibility SYSTEM
public static final AnnotationVisibility EMBEDDED
public static AnnotationVisibility[] values()
for (AnnotationVisibility c : AnnotationVisibility.values()) System.out.println(c);
public static AnnotationVisibility 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 nullCopyright © 2020. All Rights Reserved.