public static enum Parser.Operator extends Enum<Parser.Operator>
| Modifier and Type | Method and Description |
|---|---|
static Parser.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.Operator EQ
public static final Parser.Operator GT
public static final Parser.Operator LT
public static final Parser.Operator GTE
public static final Parser.Operator LTE
public static Parser.Operator[] values()
for (Parser.Operator c : Parser.Operator.values()) System.out.println(c);
public static Parser.Operator 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 © 2007-2012 Global Information Systems Group, ETH Zurich. All Rights Reserved.