public enum NodeLabel extends Enum<NodeLabel> implements org.neo4j.graphdb.Label
| Enum Constant and Description |
|---|
EMBEDDED
Represents an embedded (dependent) entity.
|
ENTITY
A node mapping an entity
|
SEQUENCE
A node representing a sequence.
|
TABLE_BASED_SEQUENCE
A node representing a table-based sequence.
|
TEMP_NODE
In some scenarios we need to create temporary nodes that are going to be deleted once the association is between
two entities is created.
|
| Modifier and Type | Method and Description |
|---|---|
static NodeLabel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeLabel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeLabel ENTITY
public static final NodeLabel TEMP_NODE
Neo4jDialectpublic static final NodeLabel EMBEDDED
public static final NodeLabel SEQUENCE
public static final NodeLabel TABLE_BASED_SEQUENCE
public static NodeLabel[] values()
for (NodeLabel c : NodeLabel.values()) System.out.println(c);
public static NodeLabel 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 © 2010-2014 Hibernate. All Rights Reserved.