Uses of Interface
org.neo4j.kernel.impl.nioneo.store.PropertyData

Packages that use PropertyData
org.neo4j.kernel.impl.core   
org.neo4j.kernel.impl.nioneo.store   
org.neo4j.kernel.impl.nioneo.xa   
org.neo4j.kernel.impl.persistence   
 

Uses of PropertyData in org.neo4j.kernel.impl.core
 

Methods in org.neo4j.kernel.impl.core that return types with arguments of type PropertyData
 ArrayMap<Integer,PropertyData> NodeManager.getCowPropertyAddMap(org.neo4j.kernel.impl.core.Primitive primitive)
           
 ArrayMap<Integer,PropertyData> LockReleaser.getCowPropertyAddMap(org.neo4j.kernel.impl.core.Primitive primitive)
           
 ArrayMap<Integer,PropertyData> NodeManager.getCowPropertyAddMap(org.neo4j.kernel.impl.core.Primitive primitive, boolean create)
           
 ArrayMap<Integer,PropertyData> LockReleaser.getCowPropertyAddMap(org.neo4j.kernel.impl.core.Primitive primitive, boolean create)
           
 ArrayMap<Integer,PropertyData> NodeManager.getCowPropertyRemoveMap(org.neo4j.kernel.impl.core.Primitive primitive)
           
 ArrayMap<Integer,PropertyData> LockReleaser.getCowPropertyRemoveMap(org.neo4j.kernel.impl.core.Primitive primitive)
           
 ArrayMap<Integer,PropertyData> NodeManager.getCowPropertyRemoveMap(org.neo4j.kernel.impl.core.Primitive primitive, boolean create)
           
 ArrayMap<Integer,PropertyData> LockReleaser.getCowPropertyRemoveMap(org.neo4j.kernel.impl.core.Primitive primitive, boolean create)
           
 

Methods in org.neo4j.kernel.impl.core with parameters of type PropertyData
 String NodeManager.getKeyForProperty(PropertyData property)
           
 

Uses of PropertyData in org.neo4j.kernel.impl.nioneo.store
 

Methods in org.neo4j.kernel.impl.nioneo.store that return PropertyData
static PropertyData PropertyDatas.forBoolean(int index, long id, boolean value)
           
static PropertyData PropertyDatas.forByte(int index, long id, byte value)
           
static PropertyData PropertyDatas.forChar(int index, long id, char value)
           
static PropertyData PropertyDatas.forDouble(int index, long id, double value)
           
static PropertyData PropertyDatas.forFloat(int index, long id, float value)
           
static PropertyData PropertyDatas.forInt(int index, long id, int value)
           
static PropertyData PropertyDatas.forLong(int index, long id, long value)
           
static PropertyData PropertyDatas.forShort(int index, long id, short value)
           
static PropertyData PropertyDatas.forStringOrArray(int index, long id, Object value)
           
abstract  PropertyData PropertyType.newPropertyData(PropertyBlock block, long propertyId, Object extractedValue)
           
 PropertyData PropertyBlock.newPropertyData(PropertyRecord parent)
           
 PropertyData PropertyBlock.newPropertyData(PropertyRecord parent, Object extractedValue)
           
 

Uses of PropertyData in org.neo4j.kernel.impl.nioneo.xa
 

Methods in org.neo4j.kernel.impl.nioneo.xa that return PropertyData
 PropertyData WriteTransaction.nodeAddProperty(long nodeId, PropertyIndex index, Object value)
           
 PropertyData WriteTransaction.nodeChangeProperty(long nodeId, PropertyData propertyData, Object value)
           
 PropertyData WriteTransaction.relAddProperty(long relId, PropertyIndex index, Object value)
           
 PropertyData WriteTransaction.relChangeProperty(long relId, PropertyData propertyData, Object value)
           
 

Methods in org.neo4j.kernel.impl.nioneo.xa that return types with arguments of type PropertyData
 ArrayMap<Integer,PropertyData> WriteTransaction.nodeDelete(long nodeId)
           
 ArrayMap<Integer,PropertyData> WriteTransaction.nodeLoadProperties(long nodeId, boolean light)
           
 ArrayMap<Integer,PropertyData> WriteTransaction.relDelete(long id)
           
 ArrayMap<Integer,PropertyData> WriteTransaction.relLoadProperties(long relId, boolean light)
           
 

Methods in org.neo4j.kernel.impl.nioneo.xa with parameters of type PropertyData
 int WriteTransaction.getKeyIdForProperty(PropertyData property)
           
 Object WriteTransaction.loadPropertyValue(PropertyData propertyData)
           
 PropertyData WriteTransaction.nodeChangeProperty(long nodeId, PropertyData propertyData, Object value)
           
 void WriteTransaction.nodeRemoveProperty(long nodeId, PropertyData propertyData)
           
 PropertyData WriteTransaction.relChangeProperty(long relId, PropertyData propertyData, Object value)
           
 void WriteTransaction.relRemoveProperty(long relId, PropertyData propertyData)
           
 

Uses of PropertyData in org.neo4j.kernel.impl.persistence
 

Methods in org.neo4j.kernel.impl.persistence that return PropertyData
 PropertyData PersistenceManager.nodeAddProperty(long nodeId, PropertyIndex index, Object value)
           
 PropertyData NeoStoreTransaction.nodeAddProperty(long nodeId, PropertyIndex index, Object value)
          Adds a property to the given node, with the given index and value.
 PropertyData PersistenceManager.nodeChangeProperty(long nodeId, PropertyData data, Object value)
           
 PropertyData NeoStoreTransaction.nodeChangeProperty(long nodeId, PropertyData index, Object value)
          Changes an existing property of the given node, with the given index to the passed value
 PropertyData PersistenceManager.relAddProperty(long relId, PropertyIndex index, Object value)
           
 PropertyData NeoStoreTransaction.relAddProperty(long relId, PropertyIndex index, Object value)
          Adds a property to the given relationship, with the given index and value.
 PropertyData PersistenceManager.relChangeProperty(long relId, PropertyData data, Object value)
           
 PropertyData NeoStoreTransaction.relChangeProperty(long relId, PropertyData index, Object value)
          Changes an existing property's value of the given relationship, with the given index to the passed value
 

Methods in org.neo4j.kernel.impl.persistence that return types with arguments of type PropertyData
 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.
 

Methods in org.neo4j.kernel.impl.persistence with parameters of type PropertyData
 int PersistenceManager.getKeyIdForProperty(PropertyData property)
           
 int NeoStoreTransaction.getKeyIdForProperty(PropertyData property)
          Returns the index key ids that are contained within the property record with the specified id.
 Object PersistenceManager.loadPropertyValue(PropertyData property)
           
 Object NeoStoreTransaction.loadPropertyValue(PropertyData property)
          Attempts to load the value off the store forthe given PropertyData object.
 PropertyData PersistenceManager.nodeChangeProperty(long nodeId, PropertyData data, Object value)
           
 PropertyData NeoStoreTransaction.nodeChangeProperty(long nodeId, PropertyData index, Object value)
          Changes an existing property of the given node, with the given index to the passed value
 void PersistenceManager.nodeRemoveProperty(long nodeId, PropertyData data)
           
 void NeoStoreTransaction.nodeRemoveProperty(long nodeId, PropertyData index)
          Removes the given property identified by indexKeyId of the node with the given id.
 PropertyData PersistenceManager.relChangeProperty(long relId, PropertyData data, Object value)
           
 PropertyData NeoStoreTransaction.relChangeProperty(long relId, PropertyData index, Object value)
          Changes an existing property's value of the given relationship, with the given index to the passed value
 void PersistenceManager.relRemoveProperty(long relId, PropertyData data)
           
 void NeoStoreTransaction.relRemoveProperty(long relId, PropertyData index)
          Removes the given property identified by its index from the relationship with the given id.
 



Copyright © 2002-2012 The Neo4j Graph Database Project. All Rights Reserved.