Uses of Interface
org.jrdf.graph.URIReference

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

Uses of URIReference in org.jrdf.graph
 

Classes in org.jrdf.graph that implement URIReference
 class AbstractURIReference
          A base implementation of an RDF URIReference.
 

Methods in org.jrdf.graph that return URIReference
 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.
 

Methods in org.jrdf.graph with parameters of type URIReference
 void TypedNodeVisitorAdapter.visitURIReference(URIReference uriReference)
          Visit URI Reference.
 void TypedNodeVisitor.visitURIReference(URIReference uriReference)
          Visit URI Reference.
 

Uses of URIReference in org.jrdf.graph.mem
 

Classes in org.jrdf.graph.mem that implement URIReference
 class URIReferenceImpl
          RDF URI reference - resource node.
 

Methods in org.jrdf.graph.mem that return URIReference
 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.
 

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

Methods in org.jrdf.parser.ntriples.parser that return URIReference
 URIReference URIReferenceParserImpl.parseURIReference(String s)
           
 URIReference URIReferenceParser.parseURIReference(String s)
           
 

Uses of URIReference in org.jrdf.writer
 

Methods in org.jrdf.writer with parameters of type URIReference
 String RdfNamespaceMap.getNamespace(URIReference resource)
          Returns the namespace that is mapped to the resource URI (prefix), or null if the URI is not mapped.
 String RdfNamespaceMap.replaceNamespace(URIReference resource)
          Returns a string representing the resource URI with its URI prefix replaced by the mapped namespace.
 

Uses of URIReference in org.jrdf.writer.mem
 

Methods in org.jrdf.writer.mem with parameters of type URIReference
 String RdfNamespaceMapImpl.getNamespace(URIReference resource)
           
 String RdfNamespaceMapImpl.replaceNamespace(URIReference resource)