java.lang.annotation
Enum RetentionPolicy

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Enum sample code for java.lang.Enum definition code for java.lang.Enum <RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy >
      extended by java.lang.annotation.RetentionPolicy
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable , Comparable sample code for java.lang.Comparable definition code for java.lang.Comparable <RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy >

public enum RetentionPolicy
extends Enum sample code for java.lang.Enum definition code for java.lang.Enum <RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy >

Annotation retention policy. The constants of this enumerated type describe the various policies for retaining annotations. They are used in conjunction with the Retention meta-annotation type to specify how long annotations are to be retained.

Since:
1.5

Enum Constant Summary
CLASS sample code for java.lang.annotation.RetentionPolicy.CLASS definition code for java.lang.annotation.RetentionPolicy.CLASS
          Annotations are to be recorded in the class file by the compiler but need not be retained by the VM at run time.
RUNTIME sample code for java.lang.annotation.RetentionPolicy.RUNTIME definition code for java.lang.annotation.RetentionPolicy.RUNTIME
          Annotations are to be recorded in the class file by the compiler and retained by the VM at run time, so they may be read reflectively.
SOURCE sample code for java.lang.annotation.RetentionPolicy.SOURCE definition code for java.lang.annotation.RetentionPolicy.SOURCE
          Annotations are to be discarded by the compiler.
 
Method Summary
static RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy valueOf sample code for java.lang.annotation.RetentionPolicy.valueOf(java.lang.String) definition code for java.lang.annotation.RetentionPolicy.valueOf(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  name)
          Returns the enum constant of this type with the specified name.
static RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy [] values sample code for java.lang.annotation.RetentionPolicy.values() definition code for java.lang.annotation.RetentionPolicy.values() ()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum sample code for java.lang.Enum definition code for java.lang.Enum
clone sample code for java.lang.Enum.clone() definition code for java.lang.Enum.clone() , compareTo sample code for java.lang.Enum.compareTo(E) definition code for java.lang.Enum.compareTo(E) , equals sample code for java.lang.Enum.equals(java.lang.Object) definition code for java.lang.Enum.equals(java.lang.Object) , getDeclaringClass sample code for java.lang.Enum.getDeclaringClass() definition code for java.lang.Enum.getDeclaringClass() , hashCode sample code for java.lang.Enum.hashCode() definition code for java.lang.Enum.hashCode() , name sample code for java.lang.Enum.name() definition code for java.lang.Enum.name() , ordinal sample code for java.lang.Enum.ordinal() definition code for java.lang.Enum.ordinal() , toString sample code for java.lang.Enum.toString() definition code for java.lang.Enum.toString() , valueOf sample code for java.lang.Enum.valueOf(java.lang.Class, java.lang.String) definition code for java.lang.Enum.valueOf(java.lang.Class, java.lang.String)
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Enum Constant Detail

SOURCE

public static final RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy  SOURCE
Annotations are to be discarded by the compiler.


CLASS

public static final RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy  CLASS
Annotations are to be recorded in the class file by the compiler but need not be retained by the VM at run time. This is the default behavior.


RUNTIME

public static final RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy  RUNTIME
Annotations are to be recorded in the class file by the compiler and retained by the VM at run time, so they may be read reflectively.

See Also:
AnnotatedElement sample code for java.lang.reflect.AnnotatedElement definition code for java.lang.reflect.AnnotatedElement
Method Detail

values sample code for java.lang.annotation.RetentionPolicy.values() definition code for java.lang.annotation.RetentionPolicy.values()

public static final RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy [] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(RetentionPolicy c : RetentionPolicy.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf sample code for java.lang.annotation.RetentionPolicy.valueOf(java.lang.String) definition code for java.lang.annotation.RetentionPolicy.valueOf(java.lang.String)

public static RetentionPolicy sample code for java.lang.annotation.RetentionPolicy definition code for java.lang.annotation.RetentionPolicy  valueOf(String sample code for java.lang.String definition code for java.lang.String  name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException sample code for java.lang.IllegalArgumentException definition code for java.lang.IllegalArgumentException - if this enum type has no constant with the specified name