public enum RetentionPolicy extends java.lang.Enum<RetentionPolicy>
Retention| Enum Constant and Description |
|---|
CLASS
Indicates that the annotation should be stored in class files.
|
RUNTIME
Indicates that the annotation should be available at runtime.
|
SOURCE
Indicates that the annotation should only be available when
parsing the source code.
|
| Modifier and Type | Method and Description |
|---|---|
static RetentionPolicy |
valueOf(java.lang.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.
|
public 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(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 null