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