public enum ValueCalculationItemType extends Enum<ValueCalculationItemType>
| Enum Constant and Description |
|---|
BRACKET |
CONSTANT |
CV |
OPERATOR |
SELF |
| Modifier and Type | Method and Description |
|---|---|
static ValueCalculationItemType |
fromValue(String v) |
String |
value() |
static ValueCalculationItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueCalculationItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueCalculationItemType CONSTANT
public static final ValueCalculationItemType OPERATOR
public static final ValueCalculationItemType BRACKET
public static final ValueCalculationItemType SELF
public static final ValueCalculationItemType CV
public static ValueCalculationItemType[] values()
for (ValueCalculationItemType c : ValueCalculationItemType.values()) System.out.println(c);
public static ValueCalculationItemType 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 String value()
public static ValueCalculationItemType fromValue(String v)
Copyright © 2024. All rights reserved.