Uses of Class
org.jrdf.graph.GraphElementFactoryException

Packages that use GraphElementFactoryException
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   
org.jrdf.parser   
org.jrdf.parser.mem   
 

Uses of GraphElementFactoryException in org.jrdf.graph
 

Methods in org.jrdf.graph that throw GraphElementFactoryException
 BlankNode GraphElementFactory.createResource()
          Create a blank nodes that is associated with a specific graph.
 URIReference GraphElementFactory.createResource(URI uri)
          Create a URI reference.
 URIReference GraphElementFactory.createResource(URI uri, boolean validate)
          Create a URI reference without checking if the URI given is a valid RDF URI, currently if the URI is absolute.
 Literal GraphElementFactory.createLiteral(String lexicalValue)
          Creates a new literal with the given lexical value, with no language or datatype.
 Literal GraphElementFactory.createLiteral(String lexicalValue, String languageType)
          Creates a new literal with the given lexical value, with a given language but no datatype.
 Literal GraphElementFactory.createLiteral(String lexicalValue, URI datatypeURI)
          Creates a new literal with the given lexical value and given datatype.
 Triple GraphElementFactory.createTriple(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Creates a new triple to be used in the graph.
 

Uses of GraphElementFactoryException in org.jrdf.graph.mem
 

Methods in org.jrdf.graph.mem that throw GraphElementFactoryException
 BlankNode GraphElementFactoryImpl.createResource()
          Create a blank nodes that is associated with a specific graph.
 URIReference GraphElementFactoryImpl.createResource(URI uri)
          Create a URI reference.
 URIReference GraphElementFactoryImpl.createResource(URI uri, boolean validate)
          Create a URI reference without checking if the URI given is a valid RDF URI, currently if the URI is absolute.
 Literal GraphElementFactoryImpl.createLiteral(String lexicalValue)
          Creates a new literal with the given lexical value, with no language or datatype.
 Literal GraphElementFactoryImpl.createLiteral(String lexicalValue, String languageType)
          Creates a new literal with the given lexical value, with a given language but no datatype.
 Literal GraphElementFactoryImpl.createLiteral(String lexicalValue, URI datatypeURI)
          Creates a new literal with the given lexical value and given datatype.
 Triple GraphElementFactoryImpl.createTriple(SubjectNode subject, PredicateNode predicate, ObjectNode object)
          Creates a new triple to be used in the graph.
 

Uses of GraphElementFactoryException in org.jrdf.parser
 

Methods in org.jrdf.parser that throw GraphElementFactoryException
 BlankNode ParserBlankNodeFactory.createBlankNode()
          Creates a BlankNode that is unique relative to this instance of the ParserBlankNodeFactory.
 BlankNode ParserBlankNodeFactory.createBlankNode(String nodeID)
          Creates a BlankNode that is only distinguished by the nodeID value.
 

Uses of GraphElementFactoryException in org.jrdf.parser.mem
 

Methods in org.jrdf.parser.mem that throw GraphElementFactoryException
 BlankNode ParserBlankNodeFactoryImpl.createBlankNode()
          Always creates a new BlankNode object from the GraphElementFactory.
 BlankNode ParserBlankNodeFactoryImpl.createBlankNode(String nodeID)
          Returns the BlankNode for a nodeID that has not been seen before or calls the GraphElementFactory to create a new BlankNode otherwise.