| Package | Description |
|---|---|
| org.neo4j.kernel.api | |
| org.neo4j.kernel.api.operations | |
| org.neo4j.kernel.api.properties |
| Modifier and Type | Method and Description |
|---|---|
Iterator<SafeProperty> |
ReadStatement.graphGetAllProperties() |
Iterator<SafeProperty> |
ReadStatement.nodeGetAllProperties(long nodeId) |
Iterator<SafeProperty> |
ReadStatement.relationshipGetAllProperties(long relationshipId) |
| Modifier and Type | Method and Description |
|---|---|
Property |
DataStatement.graphSetProperty(SafeProperty property) |
Property |
DataStatement.nodeSetProperty(long nodeId,
SafeProperty property) |
Property |
DataStatement.relationshipSetProperty(long relationshipId,
SafeProperty property) |
| Modifier and Type | Method and Description |
|---|---|
Iterator<SafeProperty> |
EntityReadOperations.graphGetAllProperties(Statement state) |
Iterator<SafeProperty> |
EntityReadOperations.nodeGetAllProperties(Statement state,
long nodeId) |
Iterator<SafeProperty> |
EntityReadOperations.relationshipGetAllProperties(Statement state,
long relationshipId) |
| Modifier and Type | Method and Description |
|---|---|
void |
AuxiliaryStoreOperations.graphAddStoreProperty(SafeProperty property) |
void |
AuxiliaryStoreOperations.graphChangeStoreProperty(SafeProperty previousProperty,
SafeProperty property) |
void |
AuxiliaryStoreOperations.graphRemoveStoreProperty(SafeProperty property) |
Property |
ConstraintEnforcingEntityWriteOperations.graphSetProperty(Statement state,
SafeProperty property) |
Property |
EntityWriteOperations.graphSetProperty(Statement state,
SafeProperty property) |
void |
AuxiliaryStoreOperations.nodeAddStoreProperty(long nodeId,
SafeProperty property) |
void |
AuxiliaryStoreOperations.nodeChangeStoreProperty(long nodeId,
SafeProperty previousProperty,
SafeProperty property) |
void |
AuxiliaryStoreOperations.nodeRemoveStoreProperty(long nodeId,
SafeProperty property) |
Property |
ConstraintEnforcingEntityWriteOperations.nodeSetProperty(Statement state,
long nodeId,
SafeProperty property) |
Property |
EntityWriteOperations.nodeSetProperty(Statement state,
long nodeId,
SafeProperty property) |
void |
AuxiliaryStoreOperations.relationshipAddStoreProperty(long relationshipId,
SafeProperty property) |
void |
AuxiliaryStoreOperations.relationshipChangeStoreProperty(long relationshipId,
SafeProperty previousProperty,
SafeProperty property) |
void |
AuxiliaryStoreOperations.relationshipRemoveStoreProperty(long relationshipId,
SafeProperty property) |
Property |
ConstraintEnforcingEntityWriteOperations.relationshipSetProperty(Statement state,
long relationshipId,
SafeProperty property) |
Property |
EntityWriteOperations.relationshipSetProperty(Statement state,
long relationshipId,
SafeProperty property) |
| Modifier and Type | Method and Description |
|---|---|
static SafeProperty |
Property.booleanArrayProperty(long propertyKeyId,
boolean[] value) |
static SafeProperty |
Property.booleanProperty(long propertyKeyId,
boolean value) |
static SafeProperty |
Property.byteArrayProperty(long propertyKeyId,
byte[] value) |
static SafeProperty |
Property.byteProperty(long propertyKeyId,
byte value) |
static SafeProperty |
Property.charArrayProperty(long propertyKeyId,
char[] value) |
static SafeProperty |
Property.charProperty(long propertyKeyId,
char value) |
static SafeProperty |
Property.doubleArrayProperty(long propertyKeyId,
double[] value) |
static SafeProperty |
Property.doubleProperty(long propertyKeyId,
double value) |
static SafeProperty |
Property.floatArrayProperty(long propertyKeyId,
float[] value) |
static SafeProperty |
Property.floatProperty(long propertyKeyId,
float value) |
static SafeProperty |
Property.intArrayProperty(long propertyKeyId,
int[] value) |
static SafeProperty |
Property.intProperty(long propertyKeyId,
int value) |
static SafeProperty |
Property.lazyArrayProperty(long propertyKeyId,
Callable<Object> producer) |
static SafeProperty |
Property.lazyStringProperty(long propertyKeyId,
Callable<String> producer) |
static SafeProperty |
Property.longArrayProperty(long propertyKeyId,
long[] value) |
static SafeProperty |
Property.longProperty(long propertyKeyId,
long value) |
static SafeProperty |
Property.property(long propertyKeyId,
Object value) |
static SafeProperty |
Property.shortArrayProperty(long propertyKeyId,
short[] value) |
static SafeProperty |
Property.shortProperty(long propertyKeyId,
short value) |
static SafeProperty |
Property.stringArrayProperty(long propertyKeyId,
String[] value) |
static SafeProperty |
Property.stringProperty(long propertyKeyId,
String value) |
Copyright © 2002–2013 The Neo4j Graph Database Project. All rights reserved.