public interface EntityReadOperations
org.neo4j.kernel.impl.api.PrimitiveLongIterator nodesGetForLabel(Statement state, long labelId)
labelId - the label id of the label that returned nodes are guaranteed to haveorg.neo4j.kernel.impl.api.PrimitiveLongIterator nodesGetFromIndexLookup(Statement state, org.neo4j.kernel.impl.api.index.IndexDescriptor index, Object value) throws IndexNotFoundKernelException
IndexNotFoundKernelException - if no such index found.boolean nodeHasLabel(Statement state, long nodeId, long labelId) throws EntityNotFoundException
true if the node is labeled with the label, otherwise false.
Label ids are retrieved from KeyWriteOperations.labelGetOrCreateForName(org.neo4j.kernel.api.Statement, String) or
KeyReadOperations.labelGetForName(org.neo4j.kernel.api.Statement, String).EntityNotFoundExceptionorg.neo4j.kernel.impl.api.PrimitiveLongIterator nodeGetLabels(Statement state, long nodeId) throws EntityNotFoundException
nodeId.
If the node has no labels an empty Iterable will be returned.EntityNotFoundExceptionProperty nodeGetProperty(Statement state, long nodeId, long propertyKeyId) throws EntityNotFoundException
EntityNotFoundExceptionProperty relationshipGetProperty(Statement state, long relationshipId, long propertyKeyId) throws EntityNotFoundException
EntityNotFoundExceptionorg.neo4j.kernel.impl.api.PrimitiveLongIterator nodeGetPropertyKeys(Statement state, long nodeId) throws EntityNotFoundException
EntityNotFoundExceptionIterator<SafeProperty> nodeGetAllProperties(Statement state, long nodeId) throws EntityNotFoundException
EntityNotFoundExceptionorg.neo4j.kernel.impl.api.PrimitiveLongIterator relationshipGetPropertyKeys(Statement state, long relationshipId) throws EntityNotFoundException
EntityNotFoundExceptionIterator<SafeProperty> relationshipGetAllProperties(Statement state, long relationshipId) throws EntityNotFoundException
EntityNotFoundExceptionorg.neo4j.kernel.impl.api.PrimitiveLongIterator graphGetPropertyKeys(Statement state)
Iterator<SafeProperty> graphGetAllProperties(Statement state)
Copyright © 2002–2013 The Neo4j Graph Database Project. All rights reserved.