Neo4j

Uses of Interface
org.neo4j.graphdb.PropertyContainer

Packages that use PropertyContainer
org.neo4j.graphdb The core graph database API. 
org.neo4j.graphdb.event Event framework. 
org.neo4j.graphdb.index Integrated API for node and relationship indexing. 
org.neo4j.graphmatching Facilities for finding occurrences of patterns in a Neo4j graph. 
org.neo4j.index.lucene Contains QueryContext and ValueContext which is part of the public API for an Index backed by Lucene. 
org.neo4j.kernel Implementation for embedding a Neo4j graph database in an application. 
org.neo4j.server.helpers   
 

Uses of PropertyContainer in org.neo4j.graphdb
 

Subinterfaces of PropertyContainer in org.neo4j.graphdb
 interface Node
          A node in the graph with properties and relationships to other entities.
 interface Relationship
          A relationship between two nodes in the graph.
 

Methods in org.neo4j.graphdb that return types with arguments of type PropertyContainer
 Iterator<PropertyContainer> Path.iterator()
          Iterates through both the Nodes and Relationships of this path in order.
 

Methods in org.neo4j.graphdb with parameters of type PropertyContainer
 Lock Transaction.acquireReadLock(PropertyContainer entity)
          Acquires a read lock for entity for this transaction.
 Lock Transaction.acquireWriteLock(PropertyContainer entity)
          Acquires a write lock for entity for this transaction.
 

Uses of PropertyContainer in org.neo4j.graphdb.event
 

Classes in org.neo4j.graphdb.event with type parameters of type PropertyContainer
 interface PropertyEntry<T extends PropertyContainer>
          Represents a changed property.
 

Uses of PropertyContainer in org.neo4j.graphdb.index
 

Classes in org.neo4j.graphdb.index with type parameters of type PropertyContainer
 interface AutoIndexer<T extends PropertyContainer>
          The primary interaction point with the auto indexing infrastructure of neo4j.
 interface Index<T extends PropertyContainer>
          An index to associate key/value pairs with entities (Nodes or Relationships) for fast lookup and querying.
 interface ReadableIndex<T extends PropertyContainer>
          An index that allows for read only operations.
 class UniqueFactory<T extends PropertyContainer>
          A utility class for creating unique (with regard to a given index) entities.
static class UniqueFactory.UniqueEntity<T extends PropertyContainer>
           
 

Method parameters in org.neo4j.graphdb.index with type arguments of type PropertyContainer
 Map<String,String> IndexManager.getConfiguration(Index<? extends PropertyContainer> index)
          Returns the configuration for index.
 String IndexManager.removeConfiguration(Index<? extends PropertyContainer> index, String key)
          EXPERT: Removes a configuration parameter from an index.
 String IndexManager.setConfiguration(Index<? extends PropertyContainer> index, String key, String value)
          EXPERT: Sets a configuration parameter for an index.
 

Uses of PropertyContainer in org.neo4j.graphmatching
 

Classes in org.neo4j.graphmatching with type parameters of type PropertyContainer
 class AbstractPatternObject<T extends PropertyContainer>
          Deprecated. 
 

Uses of PropertyContainer in org.neo4j.index.lucene
 

Classes in org.neo4j.index.lucene with type parameters of type PropertyContainer
 class LuceneTimeline<T extends PropertyContainer>
           
 interface TimelineIndex<T extends PropertyContainer>
          A utility for ordering nodes or relationships in a timeline.
 

Uses of PropertyContainer in org.neo4j.kernel
 

Classes in org.neo4j.kernel with type parameters of type PropertyContainer
 interface PropertyTracker<T extends PropertyContainer>
           
 

Methods in org.neo4j.kernel that return types with arguments of type PropertyContainer
 Iterator<PropertyContainer> BidirectionalTraversalBranchPath.iterator()
           
 Iterator<PropertyContainer> ExtendedPath.iterator()
           
 

Methods in org.neo4j.kernel with parameters of type PropertyContainer
 Lock TopLevelTransaction.acquireReadLock(PropertyContainer entity)
           
 Lock TopLevelTransaction.acquireWriteLock(PropertyContainer entity)
           
 

Uses of PropertyContainer in org.neo4j.server.helpers
 

Methods in org.neo4j.server.helpers with parameters of type PropertyContainer
static void PropertyTypeDispatcher.consumeProperties(PropertyTypeDispatcher<String,Void> dispatcher, PropertyContainer entity)
           
static
<T> Collection<T>
PropertyTypeDispatcher.dispatchProperties(PropertyTypeDispatcher<String,T> dispatcher, PropertyContainer entity)
           
 


Neo4j

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