public static enum BinaryOperation.Operator extends Enum<BinaryOperation.Operator>
Modifier and Type | Method and Description |
---|---|
static BinaryOperation.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryOperation.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryOperation.Operator EQ
public static final BinaryOperation.Operator GT
public static final BinaryOperation.Operator LT
public static final BinaryOperation.Operator GE
public static final BinaryOperation.Operator LE
public static final BinaryOperation.Operator LIKE
public static final BinaryOperation.Operator CONTAINS
public static BinaryOperation.Operator[] values()
for (BinaryOperation.Operator c : BinaryOperation.Operator.values()) System.out.println(c);
public static BinaryOperation.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 © 2016 Lexmark Enterprise Software Deutschland GmbH. All rights reserved.