public enum VirtualValueGroup extends Enum<VirtualValueGroup>
| Enum Constant and Description |
|---|
EDGE |
LIST |
MAP |
NO_VALUE |
NODE |
PATH |
POINT |
| Modifier and Type | Method and Description |
|---|---|
static VirtualValueGroup |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VirtualValueGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VirtualValueGroup MAP
public static final VirtualValueGroup NODE
public static final VirtualValueGroup EDGE
public static final VirtualValueGroup LIST
public static final VirtualValueGroup PATH
public static final VirtualValueGroup POINT
public static final VirtualValueGroup NO_VALUE
public static VirtualValueGroup[] values()
for (VirtualValueGroup c : VirtualValueGroup.values()) System.out.println(c);
public static VirtualValueGroup 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.