| Package | Description |
|---|---|
| org.neo4j.kernel.api.operations | |
| org.neo4j.kernel.api.properties |
| Modifier and Type | Method and Description |
|---|---|
Property |
EntityReadOperations.nodeGetProperty(long nodeId,
long propertyKeyId) |
Property |
EntityWriteOperations.nodeRemoveProperty(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 |
EntityReadOperations.relationshipGetProperty(long relationshipId,
long propertyKeyId) |
Property |
EntityWriteOperations.relationshipRemoveProperty(long relationshipId,
long propertyKeyId) |
| Modifier and Type | Method and Description |
|---|---|
Iterator<Property> |
EntityReadOperations.nodeGetAllProperties(long nodeId) |
Iterator<Property> |
EntityReadOperations.relationshipGetAllProperties(long relationshipId) |
| Modifier and Type | Method and Description |
|---|---|
void |
EntityWriteOperations.nodeSetProperty(long nodeId,
Property property) |
void |
EntityWriteOperations.relationshipSetProperty(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.none(long propertyKeyId) |
static Property |
Property.property(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) |
Copyright © 2002-2013 The Neo4j Graph Database Project. All Rights Reserved.