Package org.neo4j.gds.compat
Class AbstractInMemoryNodePropertyCursor
- java.lang.Object
-
- org.neo4j.kernel.impl.store.record.AbstractBaseRecord
-
- org.neo4j.kernel.impl.store.record.PropertyRecord
-
- org.neo4j.gds.compat.AbstractInMemoryNodePropertyCursor
-
- All Implemented Interfaces:
java.lang.AutoCloseable,java.lang.Iterable<org.neo4j.kernel.impl.store.record.PropertyBlock>,org.neo4j.storageengine.api.StorageCursor,org.neo4j.storageengine.api.StoragePropertyCursor
public abstract class AbstractInMemoryNodePropertyCursor extends org.neo4j.kernel.impl.store.record.PropertyRecord
-
-
Constructor Summary
Constructors Constructor Description AbstractInMemoryNodePropertyCursor(org.neo4j.gds.core.cypher.CypherGraphStore graphStore, org.neo4j.token.TokenHolders tokenHolders)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()booleannext()intpropertyKey()org.neo4j.values.storable.ValueGrouppropertyType()org.neo4j.values.storable.ValuepropertyValue()voidreset()voidsetForceLoad()protected voidsetPropertySelection(InMemoryPropertySelection propertySelection)-
Methods inherited from class org.neo4j.kernel.impl.store.record.PropertyRecord
addDeletedRecord, addLoadedBlock, addPropertyBlock, clear, clearPropertyBlocks, copy, ensureBlocksLoaded, equals, getBlockCapacity, getBlocks, getDeletedRecords, getEntityId, getNextProp, getNodeId, getNumberOfBlocks, getPrevProp, getPropertyBlock, getPropertyBlocks, getRelId, getSchemaRuleId, hashCode, hasSpaceFor, initialize, isNodeSet, isRelSet, isSchemaSet, iterator, numberOfProperties, removePropertyBlock, setChanged, setEntity, setNextProp, setNodeId, setPrevProp, setPropertyBlock, setRelId, setSchemaRuleId, size, toString
-
Methods inherited from class org.neo4j.kernel.impl.store.record.AbstractBaseRecord
getId, getIntId, getSecondaryUnitId, hasSecondaryUnitId, initialize, inUse, isCreated, isSecondaryUnitCreated, isUseFixedReferences, requiresSecondaryUnit, secondaryUnitToString, setCreated, setId, setInUse, setRequiresSecondaryUnit, setSecondaryUnitIdOnCreate, setSecondaryUnitIdOnLoad, setUseFixedReferences
-
-
-
-
Method Detail
-
propertyKey
public int propertyKey()
-
setPropertySelection
protected void setPropertySelection(InMemoryPropertySelection propertySelection)
-
next
public boolean next()
-
propertyValue
public org.neo4j.values.storable.Value propertyValue()
-
reset
public void reset()
-
setForceLoad
public void setForceLoad()
-
close
public void close()
-
propertyType
public org.neo4j.values.storable.ValueGroup propertyType()
-
-