public enum ValueCategory extends Enum<ValueCategory>
| Enum Constant and Description |
|---|
BOOLEAN |
BOOLEAN_ARRAY |
GEOMETRY |
GEOMETRY_ARRAY |
NO_CATEGORY |
NUMBER |
NUMBER_ARRAY |
STREAMING |
TEMPORAL |
TEMPORAL_ARRAY |
TEXT |
TEXT_ARRAY |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ValueCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueCategory NUMBER
public static final ValueCategory NUMBER_ARRAY
public static final ValueCategory TEXT
public static final ValueCategory TEXT_ARRAY
public static final ValueCategory GEOMETRY
public static final ValueCategory GEOMETRY_ARRAY
public static final ValueCategory TEMPORAL
public static final ValueCategory TEMPORAL_ARRAY
public static final ValueCategory BOOLEAN
public static final ValueCategory BOOLEAN_ARRAY
public static final ValueCategory STREAMING
public static final ValueCategory UNKNOWN
public static final ValueCategory NO_CATEGORY
public static ValueCategory[] values()
for (ValueCategory c : ValueCategory.values()) System.out.println(c);
public static ValueCategory 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 © 2016–2021 MWARE SOLUTIONS. All rights reserved.