Neo4j Enterprise

org.neo4j.cypher.internal.spi
Interface QueryContext.Operations<T extends PropertyContainer>

Enclosing interface:
QueryContext

public static interface QueryContext.Operations<T extends PropertyContainer>


Method Summary
 void delete(T obj)
           
 T getById(long id)
           
 Object getProperty(T obj, String propertyKey)
           
 boolean hasProperty(T obj, String propertyKey)
           
 Iterable<String> propertyKeys(T obj)
           
 void removeProperty(T obj, String propertyKey)
           
 void setProperty(T obj, String propertyKey, Object value)
           
 

Method Detail

delete

void delete(T obj)

setProperty

void setProperty(T obj,
                 String propertyKey,
                 Object value)

removeProperty

void removeProperty(T obj,
                    String propertyKey)

getProperty

Object getProperty(T obj,
                   String propertyKey)

hasProperty

boolean hasProperty(T obj,
                    String propertyKey)

propertyKeys

Iterable<String> propertyKeys(T obj)

getById

T getById(long id)

Neo4j Enterprise

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