Uses of Interface
org.jrdf.graph.Container

Packages that use Container
org.jrdf.graph This package defines a set of APIs required to implement an RDF Graph and it's associated objects.  
org.jrdf.graph.mem   
 

Uses of Container in org.jrdf.graph
 

Subinterfaces of Container in org.jrdf.graph
 interface Alternative
          An Alt is a list of unordered statements which prevents duplicates.
 interface Bag
          A Bag is a group of statements that are an unorderd list which allow duplicates.
 interface Sequence
          A Sequence is a group of statements that are kept in an orderd list.
 

Uses of Container in org.jrdf.graph.mem
 

Classes in org.jrdf.graph.mem that implement Container
 class AbstractUnorderedContainer
          The base class for the implementation of Bag and Alternative.
 class AlternativeImpl
          An implementation of Alternative.
 class BagImpl
          An implementation of Bag.
 class SequenceImpl
          An implementation of Sequence.