public static enum Properties.Phase extends Enum<Properties.Phase>
| Enum Constant and Description |
|---|
TO_ENTITY
Graph properties are mapped to key/values of a map contained in an entity.
|
TO_GRAPH
Properties are mapped to graph properties.
|
| Modifier and Type | Method and Description |
|---|---|
static Properties.Phase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Properties.Phase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Properties.Phase TO_GRAPH
public static final Properties.Phase TO_ENTITY
public static Properties.Phase[] values()
for (Properties.Phase c : Properties.Phase.values()) System.out.println(c);
public static Properties.Phase 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 © 2015–2020 Neo Technology, Inc.. All rights reserved.