| Package | Description |
|---|---|
| org.neo4j.kernel.api.operations | |
| org.neo4j.kernel.api.properties |
| Modifier and Type | Method and Description |
|---|---|
Property |
EntityReadOperations.graphGetProperty(StatementState state,
long propertyKeyId) |
Property |
EntityWriteOperations.graphRemoveProperty(StatementState state,
long propertyKeyId) |
Property |
EntityWriteOperations.graphSetProperty(StatementState state,
Property property) |
Property |
EntityReadOperations.nodeGetProperty(StatementState state,
long nodeId,
long propertyKeyId) |
Property |
EntityWriteOperations.nodeRemoveProperty(StatementState 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 |
EntityWriteOperations.nodeSetProperty(StatementState state,
long nodeId,
Property property) |
Property |
EntityReadOperations.relationshipGetProperty(StatementState state,
long relationshipId,
long propertyKeyId) |
Property |
EntityWriteOperations.relationshipRemoveProperty(StatementState state,
long relationshipId,
long propertyKeyId) |
Property |
EntityWriteOperations.relationshipSetProperty(StatementState state,
long relationshipId,
Property property) |
| Modifier and Type | Method and Description |
|---|---|
Iterator<Property> |
EntityReadOperations.graphGetAllProperties(StatementState state) |
Iterator<Property> |
EntityReadOperations.nodeGetAllProperties(StatementState state,
long nodeId) |
Iterator<Property> |
EntityReadOperations.relationshipGetAllProperties(StatementState state,
long relationshipId) |
| Modifier and Type | Method and Description |
|---|---|
void |
AuxiliaryStoreOperations.graphAddStoreProperty(Property property) |
void |
AuxiliaryStoreOperations.graphChangeStoreProperty(Property previousProperty,
Property property) |
void |
AuxiliaryStoreOperations.graphRemoveStoreProperty(Property property) |
Property |
EntityWriteOperations.graphSetProperty(StatementState state,
Property property) |
void |
AuxiliaryStoreOperations.nodeAddStoreProperty(long nodeId,
Property property) |
void |
AuxiliaryStoreOperations.nodeChangeStoreProperty(long nodeId,
Property previousProperty,
Property property) |
void |
AuxiliaryStoreOperations.nodeRemoveStoreProperty(long nodeId,
Property property) |
Property |
EntityWriteOperations.nodeSetProperty(StatementState state,
long nodeId,
Property property) |
void |
AuxiliaryStoreOperations.relationshipAddStoreProperty(long relationshipId,
Property property) |
void |
AuxiliaryStoreOperations.relationshipChangeStoreProperty(long relationshipId,
Property previousProperty,
Property property) |
void |
AuxiliaryStoreOperations.relationshipRemoveStoreProperty(long relationshipId,
Property property) |
Property |
EntityWriteOperations.relationshipSetProperty(StatementState state,
long relationshipId,
Property property) |
| Modifier and Type | Method and Description |
|---|---|
static Property |
Property.booleanArrayProperty(long propertyKeyId,
boolean[] value) |
static Property |
Property.booleanProperty(long propertyKeyId,
boolean value) |
static Property |
Property.byteArrayProperty(long propertyKeyId,
byte[] value) |
static Property |
Property.byteProperty(long propertyKeyId,
byte value) |
static Property |
Property.charArrayProperty(long propertyKeyId,
char[] value) |
static Property |
Property.charProperty(long propertyKeyId,
char value) |
static Property |
Property.doubleArrayProperty(long propertyKeyId,
double[] value) |
static Property |
Property.doubleProperty(long propertyKeyId,
double value) |
static Property |
Property.floatArrayProperty(long propertyKeyId,
float[] value) |
static Property |
Property.floatProperty(long propertyKeyId,
float value) |
static Property |
Property.intArrayProperty(long propertyKeyId,
int[] value) |
static Property |
Property.intProperty(long propertyKeyId,
int value) |
static Property |
Property.longArrayProperty(long propertyKeyId,
long[] value) |
static Property |
Property.longProperty(long propertyKeyId,
long value) |
static Property |
Property.noGraphProperty(long propertyKeyId) |
static Property |
Property.noNodeProperty(long nodeId,
long propertyKeyId) |
static Property |
Property.noProperty(long propertyKeyId,
EntityType type,
long entityId) |
static Property |
Property.noRelationshipProperty(long relationshipId,
long propertyKeyId) |
static Property |
Property.property(long propertyKeyId,
Object value) |
static Property |
Property.propertyFromNode(long nodeId,
long propertyKeyId,
Object value) |
static Property |
Property.propertyFromRelationship(long relationshipId,
long propertyKeyId,
Object value) |
static Property |
Property.shortArrayProperty(long propertyKeyId,
short[] value) |
static Property |
Property.shortProperty(long propertyKeyId,
short value) |
static Property |
Property.stringArrayProperty(long propertyKeyId,
String[] value) |
static Property |
Property.stringProperty(long propertyKeyId,
String value) |
| Constructor and Description |
|---|
PropertyKeyIdIterator(Iterator<Property> properties) |
Copyright © 2002-2013 The Neo4j Graph Database Project. All Rights Reserved.