| Methods in org.neo4j.kernel.impl.persistence that return ArrayMap |
ArrayMap<Integer,PropertyData> |
PersistenceManager.loadNodeProperties(long nodeId,
boolean light)
|
ArrayMap<Integer,PropertyData> |
PersistenceManager.loadRelProperties(long relId,
boolean light)
|
ArrayMap<Integer,PropertyData> |
PersistenceManager.nodeDelete(long nodeId)
|
ArrayMap<Integer,PropertyData> |
NeoStoreTransaction.nodeDelete(long nodeId)
Deletes a node by its id, returning its properties which are now removed. |
ArrayMap<Integer,PropertyData> |
NeoStoreTransaction.nodeLoadProperties(long nodeId,
boolean light)
Loads the complete property chain for the given node and returns it as a
map from property index id to property data. |
ArrayMap<Integer,PropertyData> |
PersistenceManager.relDelete(long relId)
|
ArrayMap<Integer,PropertyData> |
NeoStoreTransaction.relDelete(long relId)
Deletes a relationship by its id, returning its properties which are now
removed. |
ArrayMap<Integer,PropertyData> |
NeoStoreTransaction.relLoadProperties(long relId,
boolean light)
Loads the complete property chain for the given relationship and returns
it as a map from property index id to property data. |