public static enum Parser.BooleanOperators extends Enum<Parser.BooleanOperators>
| Enum Constant and Description |
|---|
AND |
| Modifier and Type | Method and Description |
|---|---|
static Parser.BooleanOperators |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Parser.BooleanOperators[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.BooleanOperators AND
public static Parser.BooleanOperators[] values()
for (Parser.BooleanOperators c : Parser.BooleanOperators.values()) System.out.println(c);
public static Parser.BooleanOperators 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.