public static enum Tokens.T extends Enum<Tokens.T>
| Enum Constant and Description |
|---|
decr
Decrement
|
eq
Equal to
|
gt
Greater than
|
gte
Greater than or equal to
|
in
In collection
|
incr
Increment
|
lt
Less than
|
lte
Less than or equal to
|
neq
Not equal to
|
notin
Not in collection
|
| Modifier and Type | Method and Description |
|---|---|
static Tokens.T |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Tokens.T[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Tokens.T gt
public static final Tokens.T lt
public static final Tokens.T eq
public static final Tokens.T gte
public static final Tokens.T lte
public static final Tokens.T neq
public static final Tokens.T decr
public static final Tokens.T incr
public static final Tokens.T in
public static final Tokens.T notin
public static Tokens.T[] values()
for (Tokens.T c : Tokens.T.values()) System.out.println(c);
public static Tokens.T valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2009-2014. All Rights Reserved.