Serializable, Comparable<OperandType>public enum OperandType extends Enum<OperandType>
| Enum Constant | Description |
|---|---|
BOOLEAN |
|
DOUBLE |
|
DYNAMIC_VALUE |
|
EXPRESSION |
|
LONG |
|
NULL_VALUE |
|
OPERATION_RESULT |
|
STRING |
| Modifier and Type | Method | Description |
|---|---|---|
Pattern |
getOperandPattern() |
|
static OperandType |
getOperandType(String operandString) |
|
static OperandType[] |
getPatternBasedOperandTypes() |
|
static OperandType |
valueOf(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(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 nullpublic Pattern getOperandPattern()
public static OperandType getOperandType(String operandString)
public static OperandType[] getPatternBasedOperandTypes()
Copyright © 2017–2020 Holisticon AG. All rights reserved.