Uses of Interface
org.jrdf.graph.index.longindex.LongIndex

Packages that use LongIndex
org.jrdf.graph.index.graphhandler   
org.jrdf.graph.index.graphhandler.mem   
org.jrdf.graph.index.longindex.derby   
org.jrdf.graph.index.longindex.mem This package implements an in memory version of the index interfaces. 
org.jrdf.graph.index.operation An implementation of the Graph Operations with knowledge of Graph indexes. 
org.jrdf.graph.index.operation.mem An in memory implementation of the Graph Operations with knowledge of Graph indexes. 
org.jrdf.graph.mem This package is an implementation of the JRDF Graph API. 
org.jrdf.graph.mem.iterator   
 

Uses of LongIndex in org.jrdf.graph.index.graphhandler
 

Methods in org.jrdf.graph.index.graphhandler with parameters of type LongIndex
 void GraphHandler.reconstructIndices(LongIndex firstIndex, LongIndex secondIndex, LongIndex thirdIndex)
          As 012, 120 and 201 are symmetrical this can be used to reconstruct either two from any one index.
 void AbstractGraphHandler.reconstructIndices(LongIndex firstIndex, LongIndex secondIndex, LongIndex thirdIndex)
           
 

Uses of LongIndex in org.jrdf.graph.index.graphhandler.mem
 

Constructors in org.jrdf.graph.index.graphhandler.mem with parameters of type LongIndex
GraphHandler012(LongIndex[] indexes, NodePool nodePool)
           
GraphHandler120(LongIndex[] indexes, NodePool nodePool)
           
GraphHandler201(LongIndex[] indexes, NodePool nodePool)
           
 

Uses of LongIndex in org.jrdf.graph.index.longindex.derby
 

Classes in org.jrdf.graph.index.longindex.derby that implement LongIndex
 class LongIndexDerby
          An on disk version of $LongIndex using Apache Derby.
 

Uses of LongIndex in org.jrdf.graph.index.longindex.mem
 

Classes in org.jrdf.graph.index.longindex.mem that implement LongIndex
 class LongIndexMem
          An in memory version of $LongIndex.
 

Uses of LongIndex in org.jrdf.graph.index.operation
 

Methods in org.jrdf.graph.index.operation that return LongIndex
 LongIndex Union.perform(LongIndex index1, LongIndex index2)
           
 LongIndex SetOperation.perform(LongIndex index1, LongIndex index2)
           
 LongIndex Intersection.perform(LongIndex index1, LongIndex index2)
           
 LongIndex Difference.perform(LongIndex index1, LongIndex index2)
           
 

Methods in org.jrdf.graph.index.operation with parameters of type LongIndex
 LongIndex Union.perform(LongIndex index1, LongIndex index2)
           
 LongIndex SetOperation.perform(LongIndex index1, LongIndex index2)
           
 LongIndex Intersection.perform(LongIndex index1, LongIndex index2)
           
 LongIndex Difference.perform(LongIndex index1, LongIndex index2)
           
 

Uses of LongIndex in org.jrdf.graph.index.operation.mem
 

Methods in org.jrdf.graph.index.operation.mem that return LongIndex
 LongIndex UnionImpl.perform(LongIndex index1, LongIndex index2)
           
 LongIndex IntersectionImpl.perform(LongIndex index1, LongIndex index2)
           
 LongIndex DifferenceImpl.perform(LongIndex index1, LongIndex index2)
           
 

Methods in org.jrdf.graph.index.operation.mem with parameters of type LongIndex
static void BasicOperations.copyEntriesToIndex(LongIndex existingIndex, LongIndex newIndex)
           
 LongIndex UnionImpl.perform(LongIndex index1, LongIndex index2)
           
 LongIndex IntersectionImpl.perform(LongIndex index1, LongIndex index2)
           
 LongIndex DifferenceImpl.perform(LongIndex index1, LongIndex index2)
           
static void BasicOperations.performIntersection(LongIndex firstExistingIndex, LongIndex secondExistingIndex, LongIndex newIndex)
           
static void BasicOperations.reconstruct(LongIndex existingIndex, LongIndex firstNewIndex, LongIndex secondNewIndex)
           
static void BasicOperations.removeEntriesFromIndex(LongIndex existingIndex, LongIndex newIndex)
           
 

Constructors in org.jrdf.graph.index.operation.mem with parameters of type LongIndex
BasicOperations.DoCopyTripleStuff(LongIndex newIndex)
           
BasicOperations.DoIntersectionTripleStuff(LongIndex newIndex, Set<Long> longSet)
           
BasicOperations.DoReconstructTripleStuff(LongIndex newIndex1, LongIndex newIndex2)
           
 

Uses of LongIndex in org.jrdf.graph.mem
 

Constructors in org.jrdf.graph.mem with parameters of type LongIndex
GraphFactoryImpl(LongIndex[] longIndexes, NodePoolMem nodePool)
           
GraphImpl(LongIndex[] longIndexes, NodePoolMem nodePool, GraphElementFactory elementFactory, GraphHandler012 graphHandler, IteratorFactory iteratorFactory)
          Default constructor.
OrderedGraphFactoryImpl(LongIndex[] longIndexes, NodePoolMem nodePool, NodeComparator nodeComparator)
           
 

Uses of LongIndex in org.jrdf.graph.mem.iterator
 

Constructors in org.jrdf.graph.mem.iterator with parameters of type LongIndex
IteratorFactoryImpl(LongIndex[] longIndexes, GraphHandler[] graphHandlers)
           
OrderedIteratorFactoryImpl(IteratorFactory iteratorFactory, NodePoolMem nodePool, LongIndex longIndex, GraphHandler graphHandlers, NodeComparator nodeComparator)
           
TripleClosableIterator(Iterator<Triple> iter, NodePoolMem nodePool, LongIndex longIndex, GraphHandler handler)