|
Neo4j Enterprise | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Label | |
|---|---|
| org.neo4j.graphdb | The graph database API used by Neo4j. |
| org.neo4j.graphdb.schema | |
| org.neo4j.kernel | Implementation for embedding a Neo4j graph database in an application. |
| org.neo4j.tooling | |
| Uses of Label in org.neo4j.graphdb |
|---|
| Classes in org.neo4j.graphdb that implement Label | |
|---|---|
class |
DynamicLabel
A dynamically instantiated and named Label. |
| Methods in org.neo4j.graphdb that return Label | |
|---|---|
static Label |
DynamicLabel.label(String labelName)
|
| Methods in org.neo4j.graphdb that return types with arguments of type Label | |
|---|---|
Iterable<Label> |
Node.getLabels()
Lists all labels attached to this node. |
| Methods in org.neo4j.graphdb with parameters of type Label | |
|---|---|
void |
Node.addLabel(Label label)
Adds a Label to this node. |
Node |
GraphDatabaseService.createNode(Label... labels)
Creates a new node and adds the provided labels to it. |
ResourceIterable<Node> |
GraphDatabaseService.findNodesByLabelAndProperty(Label label,
String propertyName,
Object value)
Returns all nodes having the label, and the wanted property value. |
boolean |
Node.hasLabel(Label label)
Checks whether or not this node has the given label. |
void |
Node.removeLabel(Label label)
Removes a Label from this node. |
| Uses of Label in org.neo4j.graphdb.schema |
|---|
| Methods in org.neo4j.graphdb.schema that return Label | |
|---|---|
Label |
IndexDefinition.getLabel()
|
| Methods in org.neo4j.graphdb.schema with parameters of type Label | |
|---|---|
ResourceIterable<IndexDefinition> |
Schema.getIndexes(Label label)
|
IndexCreator |
Schema.indexCreator(Label label)
Returns an IndexCreator where details about the index to create can be
specified. |
| Uses of Label in org.neo4j.kernel |
|---|
| Methods in org.neo4j.kernel with parameters of type Label | |
|---|---|
Node |
InternalAbstractGraphDatabase.createNode(Label... labels)
|
ResourceIterable<Node> |
InternalAbstractGraphDatabase.findNodesByLabelAndProperty(Label myLabel,
String propertyName,
Object value)
|
ResourceIterable<IndexDefinition> |
SchemaImpl.getIndexes(Label label)
|
IndexCreator |
SchemaImpl.indexCreator(Label label)
|
| Uses of Label in org.neo4j.tooling |
|---|
| Methods in org.neo4j.tooling with parameters of type Label | |
|---|---|
ResourceIterable<Node> |
GlobalGraphOperations.getAllNodesWithLabel(Label label)
Returns all nodes with a specific label. |
|
Neo4j Enterprise | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||