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