public enum ValueGroup extends Enum<ValueGroup>
The order here is defined in The Cypher CIP defining orderability
Each ValueGroup belong to some larger grouping called ValueCategory.
| Enum Constant and Description |
|---|
BOOLEAN |
BOOLEAN_ARRAY |
DATE |
DATE_ARRAY |
DURATION |
DURATION_ARRAY |
GEOMETRY |
GEOMETRY_ARRAY |
LOCAL_DATE_TIME |
LOCAL_DATE_TIME_ARRAY |
LOCAL_TIME |
LOCAL_TIME_ARRAY |
NO_VALUE |
NUMBER |
NUMBER_ARRAY |
STREAMING |
TEXT |
TEXT_ARRAY |
UNKNOWN |
ZONED_DATE_TIME |
ZONED_DATE_TIME_ARRAY |
ZONED_TIME |
ZONED_TIME_ARRAY |
| Modifier and Type | Method and Description |
|---|---|
ValueCategory |
category() |
static ValueGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueGroup UNKNOWN
public static final ValueGroup GEOMETRY_ARRAY
public static final ValueGroup ZONED_DATE_TIME_ARRAY
public static final ValueGroup LOCAL_DATE_TIME_ARRAY
public static final ValueGroup DATE_ARRAY
public static final ValueGroup ZONED_TIME_ARRAY
public static final ValueGroup LOCAL_TIME_ARRAY
public static final ValueGroup DURATION_ARRAY
public static final ValueGroup TEXT_ARRAY
public static final ValueGroup BOOLEAN_ARRAY
public static final ValueGroup NUMBER_ARRAY
public static final ValueGroup GEOMETRY
public static final ValueGroup ZONED_DATE_TIME
public static final ValueGroup LOCAL_DATE_TIME
public static final ValueGroup DATE
public static final ValueGroup ZONED_TIME
public static final ValueGroup LOCAL_TIME
public static final ValueGroup DURATION
public static final ValueGroup TEXT
public static final ValueGroup BOOLEAN
public static final ValueGroup NUMBER
public static final ValueGroup STREAMING
public static final ValueGroup NO_VALUE
public static ValueGroup[] values()
for (ValueGroup c : ValueGroup.values()) System.out.println(c);
public static ValueGroup 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 ValueCategory category()
Copyright © 2016–2021 MWARE SOLUTIONS. All rights reserved.