|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use ValueFactory | |
| org.openrdf.model | RDF model interfaces. |
| org.openrdf.model.impl | Implementations of the RDF model interfaces. |
| 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.turtle | Parser and writer for RDF in Turtle format. |
| org.openrdf.sesame.admin | Functionality for adding and deleting data to/from a repository. |
| org.openrdf.sesame.query | |
| org.openrdf.sesame.sail | RDF Storage And Inference Layer. |
| org.openrdf.sesame.sailimpl.memory | An implementation of the RDF SAIL API that uses main memory for storage. |
| org.openrdf.sesame.sailimpl.nativerdf | |
| org.openrdf.sesame.sailimpl.omm.security | |
| org.openrdf.sesame.sailimpl.omm.versioning | |
| org.openrdf.sesame.sailimpl.rdbms | A generic SAIL implementation for relational databases. |
| org.openrdf.sesame.sailimpl.sync | Synchronization SAIL. |
| Uses of ValueFactory in org.openrdf.model |
| Methods in org.openrdf.model that return ValueFactory | |
ValueFactory |
Graph.getValueFactory()
Retrieves a ValueFactory for this graph. |
| Uses of ValueFactory in org.openrdf.model.impl |
| Classes in org.openrdf.model.impl that implement ValueFactory | |
class |
ValueFactoryImpl
Default implementation of the ValueFactory interface that uses the RDF model classes from this package. |
| Methods in org.openrdf.model.impl that return ValueFactory | |
ValueFactory |
GraphImpl.getValueFactory()
|
| Uses of ValueFactory in org.openrdf.rio.ntriples |
| Methods in org.openrdf.rio.ntriples with parameters of type ValueFactory | |
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. |
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 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. |
| 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 objects for resources, bNodes and literals. |
|
| 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 objects for resources, bNodes and literals. |
|
| 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 objects for resources, bNodes and literals. |
|
| Uses of ValueFactory in org.openrdf.sesame.admin |
| Constructors in org.openrdf.sesame.admin with parameters of type ValueFactory | |
XmlAdminMsgReader(XMLReader xmlReader,
ValueFactory valueFactory)
Creates a new XmlAdminMsgReader that will use the supplied XMLReader for parsing the XML admin message documents and the supplied ValueFactory to create any model objects. |
|
| Uses of ValueFactory in org.openrdf.sesame.query |
| Constructors in org.openrdf.sesame.query with parameters of type ValueFactory | |
XmlQueryResultReader(XMLReader xmlReader,
ValueFactory valueFactory)
Creates a new XmlQueryResultReader that will use the supplied XMLReader for parsing the XML query result documents and the supplied ValueFactory to create any model objects. |
|
BinaryTableResultReader(ValueFactory valueFactory)
Creates a new reader for the binary result format that will use the supplied ValueFactory to create Value objects. |
|
| Uses of ValueFactory in org.openrdf.sesame.sail |
| Methods in org.openrdf.sesame.sail that return ValueFactory | |
ValueFactory |
RdfSource.getValueFactory()
Gets a ValueFactory object that can be used to create URI-, blank node- and literal objects. |
| Uses of ValueFactory in org.openrdf.sesame.sailimpl.memory |
| Classes in org.openrdf.sesame.sailimpl.memory that implement ValueFactory | |
class |
RdfRepository
An implementation of the RdfRepository interface extending the class org.openrdf.sesame.sail.memory.RdfSource with write-methods. |
class |
RdfSchemaRepository
An implementation of the RdfSchemaRepository interface extending the memory repository with Schema inferencing capabilities. |
class |
RdfSource
An implementation of the RdfSource interface from the RDF Sail API that stores its data in main memory and that can use a file for persistent storage. |
| Methods in org.openrdf.sesame.sailimpl.memory that return ValueFactory | |
ValueFactory |
RdfSource.getValueFactory()
|
| Uses of ValueFactory in org.openrdf.sesame.sailimpl.nativerdf |
| Classes in org.openrdf.sesame.sailimpl.nativerdf that implement ValueFactory | |
class |
ValueStore
Class that provides indexed storage and retrieval of RDF values. |
| Methods in org.openrdf.sesame.sailimpl.nativerdf that return ValueFactory | |
ValueFactory |
NativeRdfRepository.getValueFactory()
|
| Constructors in org.openrdf.sesame.sailimpl.nativerdf with parameters of type ValueFactory | |
NativeStatementIterator(TripleStore tripleStore,
ValueStore valueStore,
ValueFactory valueFactory,
Resource subj,
URI pred,
Value obj,
int subjID,
int predID,
int objID)
Creates a new NativeStatementIterator. |
|
| Uses of ValueFactory in org.openrdf.sesame.sailimpl.omm.security |
| Methods in org.openrdf.sesame.sailimpl.omm.security that return ValueFactory | |
ValueFactory |
SecuritySail.getValueFactory()
|
| Uses of ValueFactory in org.openrdf.sesame.sailimpl.omm.versioning |
| Classes in org.openrdf.sesame.sailimpl.omm.versioning that implement ValueFactory | |
class |
VersioningRdbmsSail
Title: Description: Copyright: Copyright (c) 2003 Company: |
| Uses of ValueFactory in org.openrdf.sesame.sailimpl.rdbms |
| Methods in org.openrdf.sesame.sailimpl.rdbms that return ValueFactory | |
ValueFactory |
RdfSource.getValueFactory()
|
| Uses of ValueFactory in org.openrdf.sesame.sailimpl.sync |
| Methods in org.openrdf.sesame.sailimpl.sync that return ValueFactory | |
ValueFactory |
SyncRdfRepository.getValueFactory()
|
|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||