public enum BoolMatch extends java.lang.Enum<BoolMatch>
MatchExpression| Enum Constant and Description |
|---|
EQUALS
Checks that Bool1 == Bool2
|
NOT_EQUALS
Checks that Bool1 !
|
| Modifier and Type | Method and Description |
|---|---|
static BoolMatch |
fromSymbol(java.lang.String symbol) |
java.lang.String |
getSymbol()
Return the symbol that identifies the matchers
|
int |
getType() |
static BoolMatch |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BoolMatch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoolMatch EQUALS
public static final BoolMatch NOT_EQUALS
public static BoolMatch[] values()
for (BoolMatch c : BoolMatch.values()) System.out.println(c);
public static BoolMatch 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 nullpublic java.lang.String getSymbol()
public int getType()
public static BoolMatch fromSymbol(java.lang.String symbol)