public enum ValueGroup extends Enum<ValueGroup>
| Enum Constant and Description |
|---|
BOOLEAN |
BOOLEAN_ARRAY |
NO_VALUE |
NUMBER |
NUMBER_ARRAY |
TEXT |
TEXT_ARRAY |
| Modifier and Type | Method and Description |
|---|---|
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 TEXT_ARRAY
public static final ValueGroup BOOLEAN_ARRAY
public static final ValueGroup NUMBER_ARRAY
public static final ValueGroup TEXT
public static final ValueGroup BOOLEAN
public static final ValueGroup NUMBER
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 nullCopyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.