daikon
Enum VarInfo.LangFlags

Object
  extended by Enum<VarInfo.LangFlags>
      extended by VarInfo.LangFlags
All Implemented Interfaces:
Serializable, Comparable<VarInfo.LangFlags>
Enclosing class:
VarInfo

public static enum VarInfo.LangFlags
extends Enum<VarInfo.LangFlags>


Enum Constant Summary
ANNOTATION
           
ENUM
           
FINAL
           
PRIVATE
           
PROTECTED
           
PUBLIC
           
STATIC
           
SYNCHRONIZED
           
TRANSIENT
           
VOLATILE
           
 
Method Summary
static VarInfo.LangFlags valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VarInfo.LangFlags[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PUBLIC

public static final VarInfo.LangFlags PUBLIC

PRIVATE

public static final VarInfo.LangFlags PRIVATE

PROTECTED

public static final VarInfo.LangFlags PROTECTED

STATIC

public static final VarInfo.LangFlags STATIC

FINAL

public static final VarInfo.LangFlags FINAL

SYNCHRONIZED

public static final VarInfo.LangFlags SYNCHRONIZED

VOLATILE

public static final VarInfo.LangFlags VOLATILE

TRANSIENT

public static final VarInfo.LangFlags TRANSIENT

ANNOTATION

public static final VarInfo.LangFlags ANNOTATION

ENUM

public static final VarInfo.LangFlags ENUM
Method Detail

values

public static VarInfo.LangFlags[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (VarInfo.LangFlags c : VarInfo.LangFlags.values())
    System.out.println(c);

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

valueOf

public static VarInfo.LangFlags valueOf(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 - if this enum type has no constant with the specified name
NullPointerException - if the argument is null