Uses of Interface
org.jrdf.graph.Literal

Packages that use Literal
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 Literal in org.jrdf.graph
 

Classes in org.jrdf.graph that implement Literal
 class AbstractLiteral
          A base implementation of an RDF Literal.
 

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

Methods in org.jrdf.graph with parameters of type Literal
 void TypedNodeVisitor.visitLiteral(Literal literal)
          Visit Literal.
 

Uses of Literal in org.jrdf.graph.mem
 

Classes in org.jrdf.graph.mem that implement Literal
 class LiteralImpl
          RDF literal node.
 

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