cz.vutbr.fit.racedetector
Enum ERVariable.State

java.lang.Object
  extended by java.lang.Enum<ERVariable.State>
      extended by cz.vutbr.fit.racedetector.ERVariable.State
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ERVariable.State>
Enclosing class:
ERVariable

static enum ERVariable.State
extends java.lang.Enum<ERVariable.State>


Enum Constant Summary
EXCLUSIVE
           
EXCLUSIVE2
           
RACE
           
SHARED
           
SHARED_MODIFIED
           
VIRGIN
           
 
Method Summary
static ERVariable.State valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ERVariable.State[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

VIRGIN

public static final ERVariable.State VIRGIN

EXCLUSIVE

public static final ERVariable.State EXCLUSIVE

EXCLUSIVE2

public static final ERVariable.State EXCLUSIVE2

SHARED

public static final ERVariable.State SHARED

SHARED_MODIFIED

public static final ERVariable.State SHARED_MODIFIED

RACE

public static final ERVariable.State RACE
Method Detail

values

public static final ERVariable.State[] 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(ERVariable.State c : ERVariable.State.values())
        System.out.println(c);

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

valueOf

public static ERVariable.State valueOf(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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name