public enum MapValueType extends Enum<MapValueType>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
FLOAT |
INTEGER |
LIST_BOOLEAN |
LIST_DATE |
LIST_FLOAT |
LIST_INTEGER |
LIST_STRING |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static MapValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapValueType STRING
public static final MapValueType INTEGER
public static final MapValueType FLOAT
public static final MapValueType DATE
public static final MapValueType BOOLEAN
public static final MapValueType LIST_STRING
public static final MapValueType LIST_INTEGER
public static final MapValueType LIST_FLOAT
public static final MapValueType LIST_DATE
public static final MapValueType LIST_BOOLEAN
public static MapValueType[] values()
for (MapValueType c : MapValueType.values()) System.out.println(c);
public static MapValueType 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.