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.datatype   
org.jrdf.graph.global   
org.jrdf.graph.local.index.nodepool   
org.jrdf.graph.local.mem This package is an implementation of the JRDF Graph API. 
org.jrdf.parser.ntriples.parser   
org.jrdf.sparql.builder   
org.jrdf.writer.rdfxml   
 

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(Object object)
          Converts a known Java class (such as Integer) into an RDF literal (XSD:int).
 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)
           
 void TypedNodeVisitor.visitLiteral(Literal literal)
          Visit Literal.
 

Uses of Literal in org.jrdf.graph.datatype
 

Methods in org.jrdf.graph.datatype with parameters of type Literal
 int SemanticComparatorImpl.compare(Literal o1, Literal o2)
           
 int LexicalComparatorImpl.compare(Literal o1, Literal o2)
           
 int LexicalComparatorImpl.compareLanguage(Literal o1, Literal o2, boolean ignoreCase)
           
 int LexicalComparator.compareLanguage(Literal o1, Literal o2, boolean ignoreCase)
           
 int LexicalComparatorImpl.compareLexicalForm(Literal o1, Literal o2)
           
 int LexicalComparator.compareLexicalForm(Literal o1, Literal o2)
           
 int LexicalComparatorImpl.compareLiteralTypes(Literal o1, Literal o2)
           
 int LexicalComparator.compareLiteralTypes(Literal o1, Literal o2)
          Returns order based on literal type, always goes plain, language and then data type.
 

Uses of Literal in org.jrdf.graph.global
 

Classes in org.jrdf.graph.global that implement Literal
 class LiteralImpl
           
 

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

Uses of Literal in org.jrdf.graph.local.index.nodepool
 

Methods in org.jrdf.graph.local.index.nodepool that return Literal
 Literal StringNodeMapperImpl.convertToLiteral(String string, Long nodeId)
           
 Literal StringNodeMapper.convertToLiteral(String string, Long nodeId)
           
 Literal LocalizerImpl.createLocalLiteral(String escapedForm)
           
 Literal Localizer.createLocalLiteral(String escapedForm)
           
 

Methods in org.jrdf.graph.local.index.nodepool with parameters of type Literal
 void NodePoolImpl.registerLiteral(Literal node)
           
 void NodePool.registerLiteral(Literal node)
           
 void StringNodeMapperImpl.visitLiteral(Literal literal)
           
 void LocalizerImpl.visitLiteral(Literal literal)
           
 

Uses of Literal in org.jrdf.graph.local.mem
 

Subinterfaces of Literal in org.jrdf.graph.local.mem
 interface LiteralMutableId
           
 

Methods in org.jrdf.graph.local.mem that return Literal
 Literal GraphElementFactoryImpl.createLiteral(Object object)
           
 Literal GraphElementFactoryImpl.createLiteral(String lexicalValue)
           
 Literal GraphElementFactoryImpl.createLiteral(String lexicalValue, String languageType)
           
 Literal GraphElementFactoryImpl.createLiteral(String lexicalValue, URI datatypeURI)
           
 

Methods in org.jrdf.graph.local.mem with parameters of type Literal
 void NodeComparatorImpl.visitLiteral(Literal literal)
           
 

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)
           
 

Uses of Literal in org.jrdf.writer.rdfxml
 

Methods in org.jrdf.writer.rdfxml with parameters of type Literal
 void ResourceWriterImpl.visitLiteral(Literal literal)
           
 void PredicateObjectWriterImpl.visitLiteral(Literal literal)