| Package | Description |
|---|---|
| org.neo4j.kernel.api | |
| org.neo4j.kernel.api.operations | |
| org.neo4j.kernel.api.properties |
| Modifier and Type | Method and Description |
|---|---|
Property |
ReadStatement.graphGetProperty(long propertyKeyId) |
Property |
DataStatement.graphRemoveProperty(long propertyKeyId) |
Property |
DataStatement.graphSetProperty(SafeProperty property) |
Property |
ReadStatement.nodeGetProperty(long nodeId,
long propertyKeyId) |
Property |
DataStatement.nodeRemoveProperty(long nodeId,
long propertyKeyId) |
Property |
DataStatement.nodeSetProperty(long nodeId,
SafeProperty property) |
Property |
ReadStatement.relationshipGetProperty(long relationshipId,
long propertyKeyId) |
Property |
DataStatement.relationshipRemoveProperty(long relationshipId,
long propertyKeyId) |
Property |
DataStatement.relationshipSetProperty(long relationshipId,
SafeProperty property) |
| Modifier and Type | Method and Description |
|---|---|
Property |
EntityReadOperations.graphGetProperty(Statement state,
long propertyKeyId) |
Property |
ConstraintEnforcingEntityWriteOperations.graphRemoveProperty(Statement state,
long propertyKeyId) |
Property |
EntityWriteOperations.graphRemoveProperty(Statement state,
long propertyKeyId) |
Property |
ConstraintEnforcingEntityWriteOperations.graphSetProperty(Statement state,
SafeProperty property) |
Property |
EntityWriteOperations.graphSetProperty(Statement state,
SafeProperty property) |
Property |
EntityReadOperations.nodeGetProperty(Statement state,
long nodeId,
long propertyKeyId) |
Property |
ConstraintEnforcingEntityWriteOperations.nodeRemoveProperty(Statement state,
long nodeId,
long propertyKeyId) |
Property |
EntityWriteOperations.nodeRemoveProperty(Statement state,
long nodeId,
long propertyKeyId)
Remove a node's property given the node's id and the property key id and return the value to which
it was set or null if it was not set on the node
|
Property |
ConstraintEnforcingEntityWriteOperations.nodeSetProperty(Statement state,
long nodeId,
SafeProperty property) |
Property |
EntityWriteOperations.nodeSetProperty(Statement state,
long nodeId,
SafeProperty property) |
Property |
EntityReadOperations.relationshipGetProperty(Statement state,
long relationshipId,
long propertyKeyId) |
Property |
ConstraintEnforcingEntityWriteOperations.relationshipRemoveProperty(Statement state,
long relationshipId,
long propertyKeyId) |
Property |
EntityWriteOperations.relationshipRemoveProperty(Statement state,
long relationshipId,
long propertyKeyId) |
Property |
ConstraintEnforcingEntityWriteOperations.relationshipSetProperty(Statement state,
long relationshipId,
SafeProperty property) |
Property |
EntityWriteOperations.relationshipSetProperty(Statement state,
long relationshipId,
SafeProperty property) |
| Modifier and Type | Class and Description |
|---|---|
class |
SafeProperty
Base class for properties that have a value.
|
| Modifier and Type | Method and Description |
|---|---|
static Property |
Property.noGraphProperty(long propertyKeyId) |
static Property |
Property.noNodeProperty(long nodeId,
long propertyKeyId) |
static Property |
Property.noRelationshipProperty(long relationshipId,
long propertyKeyId) |
static Property |
Property.propertyFromNode(long nodeId,
long propertyKeyId,
Object value) |
static Property |
Property.propertyFromRelationship(long relationshipId,
long propertyKeyId,
Object value) |
| Constructor and Description |
|---|
PropertyKeyIdIterator(Iterator<? extends Property> properties) |
Copyright © 2002–2013 The Neo4j Graph Database Project. All rights reserved.