public enum BinaryPlanType extends Enum<BinaryPlanType>
| Enum Constant and Description |
|---|
ADD |
DIVIDE |
EQUAL |
GREATER |
GREATER_OR_EQUAL |
LESS |
LESS_OR_EQUAL |
MULTIPLY |
NOT_EQUAL |
REMAINDER |
SUBTRACT |
| Modifier and Type | Method and Description |
|---|---|
static BinaryPlanType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryPlanType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryPlanType ADD
public static final BinaryPlanType SUBTRACT
public static final BinaryPlanType MULTIPLY
public static final BinaryPlanType DIVIDE
public static final BinaryPlanType REMAINDER
public static final BinaryPlanType EQUAL
public static final BinaryPlanType NOT_EQUAL
public static final BinaryPlanType LESS
public static final BinaryPlanType LESS_OR_EQUAL
public static final BinaryPlanType GREATER
public static final BinaryPlanType GREATER_OR_EQUAL
public static BinaryPlanType[] values()
for (BinaryPlanType c : BinaryPlanType.values()) System.out.println(c);
public static BinaryPlanType 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 © 2019. All rights reserved.