Uses of Interface
org.jrdf.graph.index.operation.SetOperation

Packages that use SetOperation
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. 
 

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

Subinterfaces of SetOperation in org.jrdf.graph.index.operation
 interface Difference
          The set difference between two graphs - all the elements that belong in the first graph that do not belong in the second.
 interface Intersection
          The set of all object which appear in both graphs.
 interface Union
          The set union of two graphs - all of the items in the first graph are added to the second graph (no duplicates).
 

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

Classes in org.jrdf.graph.index.operation.mem that implement SetOperation
 class DifferenceImpl
          Just a spike.
 class IntersectionImpl
          Just a spike.
 class UnionImpl
          Just a spike.