|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Combine.Mode>
edu.rice.cs.cunit.threadCheck.Combine.Mode
public static enum Combine.Mode
Boolean operation used to combine the results of other predicates.
Enum Constant Summary | |
---|---|
AND
Combine results of predicates using AND. |
|
IMPLIES
Implication. |
|
NOT
Invert result of predicate result. |
|
OR
Combine results of predicates using OR. |
|
XOR
Results in TRUE when one and only one of the operands is TRUE. |
Method Summary | |
---|---|
static Combine.Mode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Combine.Mode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Combine.Mode AND
public static final Combine.Mode OR
public static final Combine.Mode XOR
public static final Combine.Mode NOT
public static final Combine.Mode IMPLIES
Method Detail |
---|
public static Combine.Mode[] values()
for (Combine.Mode c : Combine.Mode.values()) System.out.println(c);
public static Combine.Mode 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 name
java.lang.NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |