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