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