public static enum Conflict.Types extends java.lang.Enum<Conflict.Types>
Enum Constant and Description |
---|
RAW
Read after Write
|
UNDEFINED |
WAR
Write after Read
|
WAW
Write after Write
|
Modifier and Type | Method and Description |
---|---|
static Conflict.Types |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Conflict.Types[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conflict.Types RAW
public static final Conflict.Types WAR
public static final Conflict.Types WAW
public static final Conflict.Types UNDEFINED
public static Conflict.Types[] values()
for (Conflict.Types c : Conflict.Types.values()) System.out.println(c);
public static Conflict.Types valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null