public enum OperandType extends java.lang.Enum<OperandType>
| Enum Constant and Description |
|---|
BOOLEAN |
DOUBLE |
DYNAMIC_VALUE |
EXPRESSION |
LONG |
NULL_VALUE |
OPERATION_RESULT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
java.util.regex.Pattern |
getOperandPattern() |
static OperandType |
getOperandType(java.lang.String operandString) |
static OperandType[] |
getPatternBasedOperandTypes() |
static OperandType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperandType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperandType DOUBLE
public static final OperandType LONG
public static final OperandType STRING
public static final OperandType BOOLEAN
public static final OperandType NULL_VALUE
public static final OperandType DYNAMIC_VALUE
public static final OperandType OPERATION_RESULT
public static final OperandType EXPRESSION
public static OperandType[] values()
for (OperandType c : OperandType.values()) System.out.println(c);
public static OperandType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.util.regex.Pattern getOperandPattern()
public static OperandType getOperandType(java.lang.String operandString)
public static OperandType[] getPatternBasedOperandTypes()
Copyright © 2017 Holisticon AG. All Rights Reserved.