Uses of Interface
org.openrdf.model.ValueFactory

Packages that use ValueFactory
org.openrdf.http.client   
org.openrdf.http.protocol   
org.openrdf.http.server   
org.openrdf.model RDF model interfaces. 
org.openrdf.model.impl Default implementations of the RDF model interfaces. 
org.openrdf.query.algebra.evaluation   
org.openrdf.query.algebra.evaluation.function   
org.openrdf.query.algebra.evaluation.function.datetime   
org.openrdf.query.algebra.evaluation.function.hash   
org.openrdf.query.algebra.evaluation.function.numeric   
org.openrdf.query.algebra.evaluation.function.rdfterm   
org.openrdf.query.algebra.evaluation.function.string   
org.openrdf.query.dawg Functionality to convert tuple query results to and from the Data Access Working Group Test Result Set RDF Vocabulary 
org.openrdf.query.parser.sparql The SPARQL query engine. 
org.openrdf.query.resultio   
org.openrdf.query.resultio.binary   
org.openrdf.query.resultio.sparqlxml Parsers and writers for the SPARQL Query Results XML Format 
org.openrdf.repository The Repository API: the main API for handling Sesame repositories. 
org.openrdf.repository.base   
org.openrdf.repository.http A repository that serves as a proxy for a remote repository on a Sesame server. 
org.openrdf.repository.sail Repository implementation for local storage backends. 
org.openrdf.repository.sparql   
org.openrdf.rio General classes and interfaces for RDF parsers and RDF writers. 
org.openrdf.rio.helpers Provides helpers classes for Rio. 
org.openrdf.rio.ntriples Parser and writer for RDF in N-Triples format. 
org.openrdf.rio.rdfxml Parser and writer for XML-serialized RDF. 
org.openrdf.rio.trig Parser and writer for RDF in TriG format. 
org.openrdf.rio.trix Parser and writer for RDF in TriX format
org.openrdf.rio.turtle Parser and writer for RDF in Turtle format. 
org.openrdf.sail RDF Storage And Inference Layer (RDF Sail): a set of interfaces defining an API for RDF repositories. 
org.openrdf.sail.helpers Generic utility classes for RDF Sail implementations. 
org.openrdf.sail.memory.model Classes implementing the storage model of the MemoryStore. 
org.openrdf.sail.nativerdf Native RDF storage backend. 
org.openrdf.sail.rdbms   
org.openrdf.workbench.base   
 

Uses of ValueFactory in org.openrdf.http.client
 

Methods in org.openrdf.http.client that return ValueFactory
 ValueFactory HTTPClient.getValueFactory()
           
 

Methods in org.openrdf.http.client with parameters of type ValueFactory
 void HTTPClient.setValueFactory(ValueFactory valueFactory)
           
 

Uses of ValueFactory in org.openrdf.http.protocol
 

Methods in org.openrdf.http.protocol with parameters of type ValueFactory
static Resource Protocol.decodeContext(String encodedValue, ValueFactory valueFactory)
          Decode a previously encoded context Resource.
static Resource[] Protocol.decodeContexts(String[] encodedValues, ValueFactory valueFactory)
          Decode previously encoded contexts.
static Resource Protocol.decodeResource(String encodedValue, ValueFactory valueFactory)
          Decode a previously encoded Resource.
static URI Protocol.decodeURI(String encodedValue, ValueFactory valueFactory)
          Decode a previously encoded URI.
static Value Protocol.decodeValue(String encodedValue, ValueFactory valueFactory)
          Decode a previously encoded value.
 

Uses of ValueFactory in org.openrdf.http.server
 

Methods in org.openrdf.http.server with parameters of type ValueFactory
static Resource[] ProtocolUtil.parseContextParam(javax.servlet.http.HttpServletRequest request, String paramName, ValueFactory vf)
           
static URI ProtocolUtil.parseGraphParam(javax.servlet.http.HttpServletRequest request, ValueFactory vf)
           
static Resource ProtocolUtil.parseResourceParam(javax.servlet.http.HttpServletRequest request, String paramName, ValueFactory vf)
           
static URI ProtocolUtil.parseURIParam(javax.servlet.http.HttpServletRequest request, String paramName, ValueFactory vf)
           
static Value ProtocolUtil.parseValueParam(javax.servlet.http.HttpServletRequest request, String paramName, ValueFactory vf)
           
 

Uses of ValueFactory in org.openrdf.model
 

Methods in org.openrdf.model that return ValueFactory
 ValueFactory Graph.getValueFactory()
          Gets the value factory for this graph.
 

Uses of ValueFactory in org.openrdf.model.impl
 

Classes in org.openrdf.model.impl that implement ValueFactory
 class ValueFactoryBase
          Abstract base class for ValueFactory implementations that implements the utility methods for creating literals for basic types by calling the generic createLiteral(String, URI) with the appropriate value and datatype.
 class ValueFactoryImpl
          Default implementation of the ValueFactory interface that uses the RDF model classes from this package.
 

Fields in org.openrdf.model.impl declared as ValueFactory
protected  ValueFactory GraphImpl.valueFactory
           
 

Methods in org.openrdf.model.impl that return ValueFactory
 ValueFactory GraphImpl.getValueFactory()
           
 

Methods in org.openrdf.model.impl with parameters of type ValueFactory
 void GraphImpl.setValueFactory(ValueFactory valueFactory)
           
 

Constructors in org.openrdf.model.impl with parameters of type ValueFactory
GraphImpl(ValueFactory valueFactory)
           
GraphImpl(ValueFactory valueFactory, Collection<? extends Statement> statements)
           
 

Uses of ValueFactory in org.openrdf.query.algebra.evaluation
 

Methods in org.openrdf.query.algebra.evaluation that return ValueFactory
 ValueFactory TripleSource.getValueFactory()
          Gets a ValueFactory object that can be used to create URI-, blank node- and literal objects.
 

Uses of ValueFactory in org.openrdf.query.algebra.evaluation.function
 

Methods in org.openrdf.query.algebra.evaluation.function with parameters of type ValueFactory
 Literal StringCast.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal IntegerCast.evaluate(ValueFactory valueFactory, Value... args)
           
 Value Function.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal FloatCast.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal DoubleCast.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal DecimalCast.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal DateTimeCast.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal BooleanCast.evaluate(ValueFactory valueFactory, Value... args)
           
 

Uses of ValueFactory in org.openrdf.query.algebra.evaluation.function.datetime
 

Methods in org.openrdf.query.algebra.evaluation.function.datetime with parameters of type ValueFactory
 Literal Year.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Tz.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Timezone.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Seconds.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Now.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Month.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Minutes.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Hours.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Day.evaluate(ValueFactory valueFactory, Value... args)
           
 

Uses of ValueFactory in org.openrdf.query.algebra.evaluation.function.hash
 

Methods in org.openrdf.query.algebra.evaluation.function.hash with parameters of type ValueFactory
 Literal SHA512.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal SHA384.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal SHA256.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal SHA1.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal MD5.evaluate(ValueFactory valueFactory, Value... args)
           
abstract  Literal HashFunction.evaluate(ValueFactory valueFactory, Value... args)
           
 

Uses of ValueFactory in org.openrdf.query.algebra.evaluation.function.numeric
 

Methods in org.openrdf.query.algebra.evaluation.function.numeric with parameters of type ValueFactory
 Literal Round.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Rand.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Floor.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Ceil.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Abs.evaluate(ValueFactory valueFactory, Value... args)
           
 

Uses of ValueFactory in org.openrdf.query.algebra.evaluation.function.rdfterm
 

Methods in org.openrdf.query.algebra.evaluation.function.rdfterm with parameters of type ValueFactory
 Literal StrLang.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal StrDt.evaluate(ValueFactory valueFactory, Value... args)
           
 

Uses of ValueFactory in org.openrdf.query.algebra.evaluation.function.string
 

Methods in org.openrdf.query.algebra.evaluation.function.string with parameters of type ValueFactory
 Literal UpperCase.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Substring.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal StrStarts.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal StrLen.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal StrEnds.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal StrBefore.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal StrAfter.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Replace.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal LowerCase.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal EncodeForUri.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Contains.evaluate(ValueFactory valueFactory, Value... args)
           
 Literal Concat.evaluate(ValueFactory valueFactory, Value... args)
           
 

Uses of ValueFactory in org.openrdf.query.dawg
 

Constructors in org.openrdf.query.dawg with parameters of type ValueFactory
DAWGTestResultSetWriter(RDFHandler rdfHandler, ValueFactory vf)
           
 

Uses of ValueFactory in org.openrdf.query.parser.sparql
 

Constructors in org.openrdf.query.parser.sparql with parameters of type ValueFactory
TupleExprBuilder(ValueFactory valueFactory)
           
UpdateExprBuilder(ValueFactory valueFactory)
           
 

Uses of ValueFactory in org.openrdf.query.resultio
 

Fields in org.openrdf.query.resultio declared as ValueFactory
protected  ValueFactory TupleQueryResultParserBase.valueFactory
          The ValueFactory to use for creating RDF model objects.
 

Methods in org.openrdf.query.resultio with parameters of type ValueFactory
static TupleQueryResultParser QueryResultIO.createParser(TupleQueryResultFormat format, ValueFactory valueFactory)
          Convenience methods for creating TupleQueryResultParser objects that use the specified ValueFactory to create RDF model objects.
static void QueryResultIO.parse(InputStream in, TupleQueryResultFormat format, TupleQueryResultHandler handler, ValueFactory valueFactory)
          Parses a query result document, reporting the parsed solutions to the supplied TupleQueryResultHandler.
 void TupleQueryResultParserBase.setValueFactory(ValueFactory valueFactory)
           
 void TupleQueryResultParser.setValueFactory(ValueFactory valueFactory)
          Sets the ValueFactory that the parser will use to create Value objects for the parsed query result.
 

Constructors in org.openrdf.query.resultio with parameters of type ValueFactory
TupleQueryResultParserBase(ValueFactory valueFactory)
          Creates a new parser base that will use the supplied ValueFactory to create Value objects.
 

Uses of ValueFactory in org.openrdf.query.resultio.binary
 

Constructors in org.openrdf.query.resultio.binary with parameters of type ValueFactory
BinaryQueryResultParser(ValueFactory valueFactory)
          Creates a new parser for the binary query result format that will use the supplied ValueFactory to create Value objects.
 

Uses of ValueFactory in org.openrdf.query.resultio.sparqlxml
 

Constructors in org.openrdf.query.resultio.sparqlxml with parameters of type ValueFactory
SPARQLResultsXMLParser(ValueFactory valueFactory)
          Creates a new parser for the SPARQL Query Results XML Format that will use the supplied ValueFactory to create Value objects.
 

Uses of ValueFactory in org.openrdf.repository
 

Methods in org.openrdf.repository that return ValueFactory
 ValueFactory RepositoryConnection.getValueFactory()
          Gets a ValueFactory for this RepositoryConnection.
 ValueFactory Repository.getValueFactory()
          Gets a ValueFactory for this Repository.
 

Uses of ValueFactory in org.openrdf.repository.base
 

Methods in org.openrdf.repository.base that return ValueFactory
 ValueFactory RepositoryWrapper.getValueFactory()
           
 ValueFactory RepositoryConnectionBase.getValueFactory()
           
 

Uses of ValueFactory in org.openrdf.repository.http
 

Methods in org.openrdf.repository.http that return ValueFactory
 ValueFactory HTTPRepository.getValueFactory()
           
 

Uses of ValueFactory in org.openrdf.repository.sail
 

Methods in org.openrdf.repository.sail that return ValueFactory
 ValueFactory SailRepository.getValueFactory()
           
 

Uses of ValueFactory in org.openrdf.repository.sparql
 

Methods in org.openrdf.repository.sparql that return ValueFactory
 ValueFactory SPARQLRepository.getValueFactory()
           
 

Uses of ValueFactory in org.openrdf.rio
 

Methods in org.openrdf.rio with parameters of type ValueFactory
static RDFParser Rio.createParser(RDFFormat format, ValueFactory valueFactory)
          Convenience methods for creating RDFParser objects that use the specified ValueFactory to create RDF model objects.
 void RDFParser.setValueFactory(ValueFactory valueFactory)
          Sets the ValueFactory that the parser will use to create Value objects for the parsed RDF data.
 

Uses of ValueFactory in org.openrdf.rio.helpers
 

Methods in org.openrdf.rio.helpers with parameters of type ValueFactory
 void RDFParserBase.setValueFactory(ValueFactory valueFactory)
           
 

Constructors in org.openrdf.rio.helpers with parameters of type ValueFactory
RDFParserBase(ValueFactory valueFactory)
          Creates a new RDFParserBase that will use the supplied ValueFactory to create RDF model objects.
 

Uses of ValueFactory in org.openrdf.rio.ntriples
 

Methods in org.openrdf.rio.ntriples with parameters of type ValueFactory
static BNode NTriplesUtil.parseBNode(String nTriplesBNode, ValueFactory valueFactory)
          Parses an N-Triples bNode, creates an object for it using the supplied ValueFactory and returns this object.
static Literal NTriplesUtil.parseLiteral(String nTriplesLiteral, ValueFactory valueFactory)
          Parses an N-Triples literal, creates an object for it using the supplied ValueFactory and returns this object.
static Resource NTriplesUtil.parseResource(String nTriplesResource, ValueFactory valueFactory)
          Parses an N-Triples resource, creates an object for it using the supplied ValueFactory and returns this object.
static URI NTriplesUtil.parseURI(String nTriplesURI, ValueFactory valueFactory)
          Parses an N-Triples URI, creates an object for it using the supplied ValueFactory and returns this object.
static Value NTriplesUtil.parseValue(String nTriplesValue, ValueFactory valueFactory)
          Parses an N-Triples value, creates an object for it using the supplied ValueFactory and returns this object.
 

Constructors in org.openrdf.rio.ntriples with parameters of type ValueFactory
NTriplesParser(ValueFactory valueFactory)
          Creates a new NTriplesParser that will use the supplied ValueFactory to create RDF model objects.
 

Uses of ValueFactory in org.openrdf.rio.rdfxml
 

Constructors in org.openrdf.rio.rdfxml with parameters of type ValueFactory
RDFXMLParser(ValueFactory valueFactory)
          Creates a new RDFXMLParser that will use the supplied ValueFactory to create RDF model objects.
 

Uses of ValueFactory in org.openrdf.rio.trig
 

Constructors in org.openrdf.rio.trig with parameters of type ValueFactory
TriGParser(ValueFactory valueFactory)
          Creates a new TriGParser that will use the supplied ValueFactory to create RDF model objects.
 

Uses of ValueFactory in org.openrdf.rio.trix
 

Constructors in org.openrdf.rio.trix with parameters of type ValueFactory
TriXParser(ValueFactory valueFactory)
          Creates a new TriXParser that will use the supplied ValueFactory to create objects for resources, bNodes, literals and statements.
 

Uses of ValueFactory in org.openrdf.rio.turtle
 

Constructors in org.openrdf.rio.turtle with parameters of type ValueFactory
TurtleParser(ValueFactory valueFactory)
          Creates a new TurtleParser that will use the supplied ValueFactory to create RDF model objects.
 

Uses of ValueFactory in org.openrdf.sail
 

Methods in org.openrdf.sail that return ValueFactory
 ValueFactory Sail.getValueFactory()
          Gets a ValueFactory object that can be used to create URI-, blank node-, literal- and statement objects.
 

Uses of ValueFactory in org.openrdf.sail.helpers
 

Methods in org.openrdf.sail.helpers that return ValueFactory
 ValueFactory SailWrapper.getValueFactory()
           
 

Uses of ValueFactory in org.openrdf.sail.memory.model
 

Classes in org.openrdf.sail.memory.model that implement ValueFactory
 class MemValueFactory
          A factory for MemValue objects that keeps track of created objects to prevent the creation of duplicate objects, minimizing memory usage as a result.
 

Uses of ValueFactory in org.openrdf.sail.nativerdf
 

Classes in org.openrdf.sail.nativerdf that implement ValueFactory
 class ValueStore
          File-based indexed storage and retrieval of RDF values.
 

Methods in org.openrdf.sail.nativerdf that return ValueFactory
 ValueFactory NativeStore.getValueFactory()
           
 ValueFactory NativeTripleSource.getValueFactory()
           
 

Uses of ValueFactory in org.openrdf.sail.rdbms
 

Classes in org.openrdf.sail.rdbms that implement ValueFactory
 class RdbmsValueFactory
          Provides basic value creation both for traditional values as well as values with an internal id.
 

Methods in org.openrdf.sail.rdbms with parameters of type ValueFactory
 void RdbmsValueFactory.setDelegate(ValueFactory vf)
           
 

Uses of ValueFactory in org.openrdf.workbench.base
 

Fields in org.openrdf.workbench.base declared as ValueFactory
protected  ValueFactory BaseRepositoryServlet.vf
           
 



Copyright © 2001-2012 Aduna. All Rights Reserved.