daikon
Enum VarInfo.RefType

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

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


Enum Constant Summary
OFFSET
           
POINTER
           
 
Method Summary
static VarInfo.RefType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static VarInfo.RefType[] 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

POINTER

public static final VarInfo.RefType POINTER

OFFSET

public static final VarInfo.RefType OFFSET
Method Detail

values

public static VarInfo.RefType[] 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.RefType c : VarInfo.RefType.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.RefType 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