Uses of Interface
org.jrdf.graph.GraphElementFactory

Packages that use GraphElementFactory
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 This package is an implementation of the JRDF Graph API. 
org.jrdf.parser.mem An in memory implementation of the parser interfaces. 
org.jrdf.parser.ntriples   
org.jrdf.parser.ntriples.parser   
org.jrdf.parser.rdfxml This package is a port of the Sesame RIO RDF/XML Parser. 
org.jrdf.sparql.builder   
 

Uses of GraphElementFactory in org.jrdf.graph
 

Fields in org.jrdf.graph declared as GraphElementFactory
protected  GraphElementFactory AbstractTripleFactory.elementFactory
          The graph element factory.
 

Methods in org.jrdf.graph that return GraphElementFactory
 GraphElementFactory Graph.getElementFactory()
          Returns the node factory for the graph, or creates one.
 

Uses of GraphElementFactory in org.jrdf.graph.mem
 

Classes in org.jrdf.graph.mem that implement GraphElementFactory
 class GraphElementFactoryImpl
          A SkipListNode Factory is a class which create the various components of a graph.
 

Methods in org.jrdf.graph.mem that return GraphElementFactory
 GraphElementFactory GraphImpl.getElementFactory()
           
 

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

Uses of GraphElementFactory in org.jrdf.parser.mem
 

Constructors in org.jrdf.parser.mem with parameters of type GraphElementFactory
ParserBlankNodeFactoryImpl(GraphElementFactory newValueFactory)
          Create a new blank node factory with the given value factory.
 

Uses of GraphElementFactory in org.jrdf.parser.ntriples
 

Methods in org.jrdf.parser.ntriples with parameters of type GraphElementFactory
 NTriplesParser ParserFactoryImpl.createParser(GraphElementFactory graphElementFactory, ParserBlankNodeFactory parserBlankNodeFactory)
           
 NTriplesParser ParserFactory.createParser(GraphElementFactory graphElementFactory, ParserBlankNodeFactory parserBlankNodeFactory)
           
 

Uses of GraphElementFactory in org.jrdf.parser.ntriples.parser
 

Constructors in org.jrdf.parser.ntriples.parser with parameters of type GraphElementFactory
LiteralParserImpl(GraphElementFactory graphElementFactory, RegexMatcherFactory regexMatcherFactory, LiteralUtil literalUtil)
           
URIReferenceParserImpl(GraphElementFactory graphElementFactory)
           
 

Uses of GraphElementFactory in org.jrdf.parser.rdfxml
 

Constructors in org.jrdf.parser.rdfxml with parameters of type GraphElementFactory
RdfXmlParser(GraphElementFactory graphElementFactory)
          Creates a new RdfXmlParser that will use the supplied GraphElementFactory to create objects for resources, bNodes and literals.
RdfXmlParser(GraphElementFactory valueFactory, ParserBlankNodeFactory parserBlankNodeFactory)
          Creates a new RdfXmlParser that will use the supplied GraphElementFactory to create objects for resources, bNodes and literals.
 

Uses of GraphElementFactory in org.jrdf.sparql.builder
 

Constructors in org.jrdf.sparql.builder with parameters of type GraphElementFactory
LiteralBuilderImpl(GraphElementFactory newFactory)