public enum RetentionPolicy extends Enum<RetentionPolicy>
| Modifier and Type | Method and Description |
|---|---|
static RetentionPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RetentionPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, getDeclaringClass, getEnumValues, hashCode, name, ordinal, setEnumValues, toString, valueOfpublic static final RetentionPolicy CLASS
public static final RetentionPolicy RUNTIME
public static final RetentionPolicy SOURCE
public static RetentionPolicy[] values()
for (RetentionPolicy c : RetentionPolicy.values()) System.out.println(c);
public static RetentionPolicy valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null