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 This package is an implementation of the JRDF Graph API. 
org.jrdf.parser.ntriples.parser   
org.jrdf.sparql.builder   
 

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 TypedNodeVisitorAdapter.visitLiteral(Literal literal)
          Visit Literal.
 void TypedNodeVisitor.visitLiteral(Literal literal)
          Visit Literal.
 

Uses of Literal in org.jrdf.graph.mem
 

Subinterfaces of Literal in org.jrdf.graph.mem
 interface LiteralMutableId
          Class description goes here.
 

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.
 

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

Methods in org.jrdf.parser.ntriples.parser that return Literal
 Literal LiteralParserImpl.parseLiteral(String s)
           
 Literal LiteralParser.parseLiteral(String s)
           
 

Uses of Literal in org.jrdf.sparql.builder
 

Methods in org.jrdf.sparql.builder that return Literal
 Literal LiteralBuilderImpl.createLiteral(org.jrdf.sparql.parser.node.ALiteralObjectTripleElement element)
           
 Literal LiteralBuilder.createLiteral(org.jrdf.sparql.parser.node.ALiteralObjectTripleElement element)