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