cz.vutbr.fit.racedetector
Enum ERVariable.State
java.lang.Object
java.lang.Enum<ERVariable.State>
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>
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 |
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
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