Uses of Interface
org.openrdf.model.Value

Packages that use Value
org.openrdf.model RDF model interfaces.  
org.openrdf.model.impl Implementations of the RDF model interfaces. 
org.openrdf.rio General classes and interfaces for RDF parsers and RDF writers. 
org.openrdf.rio.n3 Writer for RDF in Notation 3/N3 format.  
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.omm   
org.openrdf.sesame.query   
org.openrdf.sesame.query.rql.model   
org.openrdf.sesame.query.rql.model.iterators   
org.openrdf.sesame.repository Repository API interfaces. 
org.openrdf.sesame.repository.local Implementations of the repository API for local Sesame repositories. 
org.openrdf.sesame.repository.remote Implementations of the repository API for remote Sesame repositories. 
org.openrdf.sesame.sail RDF Storage And Inference Layer.  
org.openrdf.sesame.sail.query SAIL query object model. 
org.openrdf.sesame.sail.util Generic utility iterators for RDF SAIL implementations. 
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.nativerdf.model   
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.rdbms.iterators   
org.openrdf.sesame.sailimpl.rdbms.model   
org.openrdf.sesame.sailimpl.sync Synchronization SAIL.  
org.openrdf.sesame.server.http Servlets handling the communication with Sesame over HTTP. 
 

Uses of Value in org.openrdf.model
 

Subinterfaces of Value in org.openrdf.model
 interface BNode
          A blank node (aka bnode, aka anonymous node).
 interface Literal
          An RDF literal consisting of a label (the value) and optionally a language tag or a datatype (but not both).
 interface Resource
          The supertype of all RDF resources (URIs and blank nodes).
 interface URI
          A URI.
 

Methods in org.openrdf.model that return Value
 Value Statement.getObject()
          Gets the object of this statement.
 

Methods in org.openrdf.model with parameters of type Value
 Statement ValueFactory.createStatement(Resource subject, URI predicate, Value object)
          Creates a new statement with the supplied subject, predicate and object.
 void Resource.addProperty(URI property, Value value)
          Adds a property to this Resource in the RDF graph.
 void Graph.add(Resource subject, URI predicate, Value object)
          Adds a single statement to the graph.
 boolean Graph.contains(Resource subject, URI predicate, Value object)
          Checks if a statement matching the (subject, predicate, object) pattern is present in the graph.
 StatementIterator Graph.getStatements(Resource subject, URI predicate, Value object)
          Retrieves all statements matching the (subject, predicate, object) pattern in the graph as an iterator.
 Collection Graph.getStatementCollection(Resource subject, URI predicate, Value object)
          Retrieves all statements matching the (subject, predicate, object) pattern in the graph as a Collection.
 int Graph.remove(Resource subject, URI predicate, Value object)
          Remove all statements matching the (subject, predicate, object) pattern from the graph.
 

Uses of Value in org.openrdf.model.impl
 

Classes in org.openrdf.model.impl that implement Value
 class BNodeImpl
          An implementation of the BNode interface.
 class LiteralImpl
          An implementation of the Literal interface.
 class URIImpl
          An implementation of the URI interface.
 

Methods in org.openrdf.model.impl that return Value
 Value StatementImpl.getObject()
           
 

Methods in org.openrdf.model.impl with parameters of type Value
 Statement ValueFactoryImpl.createStatement(Resource subject, URI predicate, Value object)
           
 void URIImpl.addProperty(URI property, Value value)
           
 void GraphImpl.add(Resource subject, URI predicate, Value object)
           
 boolean GraphImpl.contains(Resource subject, URI predicate, Value object)
           
 StatementIterator GraphImpl.getStatements(Resource subject, URI predicate, Value object)
           
 int GraphImpl.remove(Resource subject, URI predicate, Value object)
           
 Collection GraphImpl.getStatementCollection(Resource subject, URI predicate, Value object)
           
 void BNodeImpl.addProperty(URI property, Value value)
           
 

Constructors in org.openrdf.model.impl with parameters of type Value
StatementImpl(Resource subject, URI predicate, Value object)
          Creates a new Statement with the supplied subject, predicate and object.
 

Uses of Value in org.openrdf.rio
 

Methods in org.openrdf.rio with parameters of type Value
 void StatementHandler.handleStatement(Resource subject, URI predicate, Value object)
          Called by an RDF parser when it has parsed a statement.
 void RdfDocumentWriter.writeStatement(Resource subject, URI predicate, Value object)
          Writes a statement to the document.
 

Uses of Value in org.openrdf.rio.n3
 

Methods in org.openrdf.rio.n3 with parameters of type Value
 void N3Writer.writeStatement(Resource subj, URI pred, Value obj)
           
 

Uses of Value in org.openrdf.rio.ntriples
 

Methods in org.openrdf.rio.ntriples that return Value
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.
 

Methods in org.openrdf.rio.ntriples with parameters of type Value
 void NTriplesWriter.writeStatement(Resource subj, URI pred, Value obj)
           
static String NTriplesUtil.toNTriplesString(Value value)
          Creates an N-Triples string for the supplied value.
 

Uses of Value in org.openrdf.rio.rdfxml
 

Methods in org.openrdf.rio.rdfxml with parameters of type Value
 void RdfXmlWriter.writeStatement(Resource subj, URI pred, Value obj)
           
 void AbbreviatedRdfXmlWriter.writeStatement(Resource subj, URI pred, Value obj)
           
 

Uses of Value in org.openrdf.rio.turtle
 

Methods in org.openrdf.rio.turtle with parameters of type Value
 void TurtleWriter.writeStatement(Resource subj, URI pred, Value obj)
           
 

Uses of Value in org.openrdf.sesame.admin
 

Methods in org.openrdf.sesame.admin with parameters of type Value
 void RdfAdmin.removeStatements(Resource subject, URI predicate, Value object, AdminListener listener)
          Removes statements matching the pattern (subject, predicate, object).
 

Uses of Value in org.openrdf.sesame.omm
 

Methods in org.openrdf.sesame.omm with parameters of type Value
 boolean SecurityServices.isStatementAccessible(Resource subj, URI pred, Value obj, Right right)
          Checks the accessibility of a statement according the security policy and a given right.
 boolean SecurityServices.isValueAccessible(Value val)
          Checks the accessibility of a value according to the security policy.
 

Uses of Value in org.openrdf.sesame.query
 

Methods in org.openrdf.sesame.query that return Value
 Value QueryResultsTable.getValue(int row, int column)
          Fetches the value at the specified row and column in this table.
 

Methods in org.openrdf.sesame.query with parameters of type Value
 void XmlQueryResultWriter.tupleValue(Value value)
           
 void VarBindingRdfWriter.tupleValue(Value value)
           
 void Tuple.add(Value value)
          Adds the supplied Value to this Tuple.
 void TableQueryResultListener.tupleValue(Value value)
          Delivers the next value in the current tuple/row.
 void TableQueryDuplicatesFilter.tupleValue(Value value)
           
 void StdOutGraphQueryResultWriter.triple(Resource subj, URI pred, Value obj)
           
 void RdfGraphWriter.triple(Resource subj, URI pred, Value obj)
           
 void QueryResultsTableBuilder.tupleValue(Value value)
          Method needed by the TableQueryResultListener interface.
 void QueryResultsGraphBuilder.triple(Resource subj, URI pred, Value obj)
           
 void HtmlTableWriter.tupleValue(Value value)
           
 void GraphQueryResultListener.triple(Resource subj, URI pred, Value obj)
          Delivers the next triple in the query result.
 void GraphQueryDuplicatesFilter.triple(Resource subj, URI pred, Value obj)
           
 void BinaryTableResultWriter.tupleValue(Value value)
           
 

Uses of Value in org.openrdf.sesame.query.rql.model
 

Classes in org.openrdf.sesame.query.rql.model that implement Value
 class Intersection
          An intersection of classes.
 class Projection
          An object structure representing an instantiation of a select-clause.
 

Methods in org.openrdf.sesame.query.rql.model that return Value
 Value Var.getValue()
           
 Value URI.getValue()
           
 Value Projection.get(int position)
           
 Value Intersection.minimize(RdfSchemaSource rss)
          Minimizes the set of classes in this intersection by filtering out any superclasses for which there are also subclasseses in this intersection.
 

Methods in org.openrdf.sesame.query.rql.model with parameters of type Value
 void Var.setValue(Value value)
           
 void Projection.add(Value val)
           
 void Intersection.addProperty(URI property, Value value)
           
 

Uses of Value in org.openrdf.sesame.query.rql.model.iterators
 

Methods in org.openrdf.sesame.query.rql.model.iterators that return Value
 Value StatementSubjectIterator.next()
           
 Value StatementObjectIterator.next()
           
 Value NestedValueIterator.next()
           
 Value NestedResourceIterator.next()
           
 

Methods in org.openrdf.sesame.query.rql.model.iterators with parameters of type Value
abstract  ResourceIterator NestedResourceIterator.getInnerIterator(Value outerValue)
           
 

Uses of Value in org.openrdf.sesame.repository
 

Methods in org.openrdf.sesame.repository with parameters of type Value
 void SesameRepository.removeStatements(Resource subject, URI predicate, Value object, AdminListener listener)
          Removes statements from the repository.
 

Uses of Value in org.openrdf.sesame.repository.local
 

Methods in org.openrdf.sesame.repository.local with parameters of type Value
 void LocalRepository.removeStatements(Resource subject, URI predicate, Value object, AdminListener listener)
           
 

Uses of Value in org.openrdf.sesame.repository.remote
 

Methods in org.openrdf.sesame.repository.remote with parameters of type Value
 void HTTPRepository.removeStatements(Resource subject, URI predicate, Value object, AdminListener listener)
           
 

Uses of Value in org.openrdf.sesame.sail
 

Methods in org.openrdf.sesame.sail that return Value
 Value ValueIterator.next()
          Gets the next value.
 

Methods in org.openrdf.sesame.sail with parameters of type Value
 StatementIterator RdfSource.getStatements(Resource subj, URI pred, Value obj)
          Gets all statements with a specific subject, predicate and/or object.
 boolean RdfSource.hasStatement(Resource subj, URI pred, Value obj)
          Checks whether some statement with a specific subject, predicate and/or object is present in the repository.
 StatementIterator RdfSchemaSource.getExplicitStatements(Resource subj, URI pred, Value obj)
          Gets all explicitly added statements with a specific subject, predicate and/or object.
 boolean RdfSchemaSource.hasExplicitStatement(Resource subj, URI pred, Value obj)
          Checks if an explicitly added statement with a specific subject, predicate and/or object is present in the repository.
 void RdfRepository.addStatement(Resource subj, URI pred, Value obj)
          Adds a statament to the repository.
 int RdfRepository.removeStatements(Resource subj, URI pred, Value obj)
          Removes data statements that match the (subject, predicate, object) pattern from the repository.
 

Uses of Value in org.openrdf.sesame.sail.query
 

Methods in org.openrdf.sesame.sail.query that return Value
 Value Var.getValue()
           
 Value ValueExpr.getValue()
          Gets the value of this expression.
 Value ResourceExpr.getValue()
           
 Value QueryAnswer.getValue(int idx)
           
 Value Null.getValue()
           
 Value Namespace.getValue()
           
 Value MathExpr.getValue()
           
 Value LocalName.getValue()
           
 Value LiteralExpr.getValue()
           
 Value Lang.getValue()
           
 Value Label.getValue()
           
 Value Datatype.getValue()
           
 

Methods in org.openrdf.sesame.sail.query with parameters of type Value
 void Var.setValue(Value value)
           
static boolean ValueCompare.isTrue(Value leftVal, Value rightVal, int operator)
           
 

Constructors in org.openrdf.sesame.sail.query with parameters of type Value
Var(String name, Value value)
           
QueryAnswer(Value[] values)
          Creates a new QueryAnswer.
 

Uses of Value in org.openrdf.sesame.sail.util
 

Methods in org.openrdf.sesame.sail.util that return Value
 Value ValueCollectionIterator.next()
           
 Value SingleValueIterator.next()
           
 Value EmptyValueIterator.next()
          Always throws a NoSuchElementException as there are no results in an EmptyValueIterator.
 Value EmptyStatementIterator.getObject()
          Deprecated. Replaced by Statement.getObject().
 

Constructors in org.openrdf.sesame.sail.util with parameters of type Value
SingleValueIterator(Value value)
          Creates a new SingleValueIterator that will return the supplied value as its only value.
SingleStatementIterator(Resource subject, Resource predicate, Value object)
           
 

Uses of Value in org.openrdf.sesame.sailimpl.memory
 

Subinterfaces of Value in org.openrdf.sesame.sailimpl.memory
 interface ResourceNode
          An extension of ValueNode giving it subject statements.
 interface ValueNode
           
 

Classes in org.openrdf.sesame.sailimpl.memory that implement Value
 class BNodeNode
          An extension of BNode giving it node properties.
 class LiteralNode
          An extension of Literal giving it node properties.
 class URINode
          An extension of URI giving it node properties.
 

Methods in org.openrdf.sesame.sailimpl.memory that return Value
 Value MemResourceIterator.next()
           
 Value MemLiteralIterator.next()
           
 

Methods in org.openrdf.sesame.sailimpl.memory with parameters of type Value
 void URINode.addProperty(URI property, Value value)
           
 StatementIterator RdfSource.getStatements(Resource subj, URI pred, Value obj)
           
 boolean RdfSource.hasStatement(Resource subj, URI pred, Value obj)
           
 Statement RdfSource.createStatement(Resource subject, URI predicate, Value object)
           
 StatementIterator RdfSchemaRepository.getStatements(Resource subj, URI pred, Value obj)
           
 boolean RdfSchemaRepository.hasStatement(Resource subj, URI pred, Value obj)
           
 StatementIterator RdfSchemaRepository.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 StatementIterator RdfSchemaRepository.getStatements(Resource subj, URI pred, Value obj, boolean explicitOnly)
           
 boolean RdfSchemaRepository.hasExplicitStatement(Resource subj, URI pred, Value obj)
           
 boolean RdfSchemaRepository.hasStatement(Resource subj, URI pred, Value obj, boolean explicitOnly)
           
 void RdfSchemaRepository.addStatement(Resource subj, URI pred, Value obj)
           
 int RdfSchemaRepository.removeStatements(Resource subj, URI pred, Value obj)
           
 void RdfRepository.addStatement(Resource subj, URI pred, Value obj)
           
 int RdfRepository.removeStatements(Resource subj, URI pred, Value obj)
           
 void BNodeNode.addProperty(URI property, Value value)
           
 

Constructors in org.openrdf.sesame.sailimpl.memory with parameters of type Value
MemStatement(Resource subject, URI predicate, Value object)
           
MemStatement(Resource subject, URI predicate, Value object, boolean explicit)
           
 

Uses of Value in org.openrdf.sesame.sailimpl.nativerdf
 

Methods in org.openrdf.sesame.sailimpl.nativerdf that return Value
 Value ValueStore.getValue(int id)
          Gets the value for the specified ID.
 

Methods in org.openrdf.sesame.sailimpl.nativerdf with parameters of type Value
 int ValueStore.getID(Value value)
          Gets the ID for the specified value.
 int ValueStore.getID(Value value, boolean dirtyReads)
           
 int ValueStore.storeValue(Value value)
          Stores the supplied value and returns the ID that has been assigned to it.
 Statement ValueStore.createStatement(Resource subject, URI predicate, Value object)
           
 StatementIterator NativeRdfRepository.getStatements(Resource subj, URI pred, Value obj)
           
 boolean NativeRdfRepository.hasStatement(Resource subj, URI pred, Value obj)
           
 void NativeRdfRepository.addStatement(Resource subj, URI pred, Value obj)
           
 int NativeRdfRepository.removeStatements(Resource subj, URI pred, Value obj)
           
 

Constructors in org.openrdf.sesame.sailimpl.nativerdf with parameters of type Value
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 Value in org.openrdf.sesame.sailimpl.nativerdf.model
 

Subinterfaces of Value in org.openrdf.sesame.sailimpl.nativerdf.model
 interface NativeResource
           
 interface NativeValue
           
 

Classes in org.openrdf.sesame.sailimpl.nativerdf.model that implement Value
 class NativeBNode
           
 class NativeLiteral
           
 class NativeURI
           
 

Methods in org.openrdf.sesame.sailimpl.nativerdf.model with parameters of type Value
 void NativeURI.addProperty(URI property, Value value)
           
 void NativeBNode.addProperty(URI property, Value value)
           
 

Uses of Value in org.openrdf.sesame.sailimpl.omm.security
 

Methods in org.openrdf.sesame.sailimpl.omm.security that return Value
 Value ResourceFilterIterator.next()
           
 

Methods in org.openrdf.sesame.sailimpl.omm.security with parameters of type Value
 StatementIterator SecuritySail.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 boolean SecuritySail.hasExplicitStatement(Resource subj, URI pred, Value obj)
           
 void SecuritySail.addStatement(Resource subj, URI pred, Value obj)
           
 int SecuritySail.removeStatements(Resource subj, URI pred, Value obj)
           
 StatementIterator SecuritySail.getStatements(Resource subj, URI pred, Value obj)
           
 boolean SecuritySail.hasStatement(Resource subj, URI pred, Value obj)
           
 boolean SecuritySail.isStatementAccessible(Resource subj, URI pred, Value obj, Right right)
           
 boolean SecuritySail.isValueAccessible(Value val)
           
 void SecuritySail.tupleValue(Value value)
           
 

Uses of Value in org.openrdf.sesame.sailimpl.omm.versioning
 

Methods in org.openrdf.sesame.sailimpl.omm.versioning with parameters of type Value
 void VersioningRdbmsSail.addStatement(Resource subj, URI pred, Value obj)
          add's a new explicit statement to repository
 

Uses of Value in org.openrdf.sesame.sailimpl.rdbms
 

Methods in org.openrdf.sesame.sailimpl.rdbms with parameters of type Value
 StatementIterator RdfSource.getStatements(Resource subj, URI pred, Value obj)
           
 StatementIterator RdfSource.getStatements(Resource subj, URI pred, Value obj, boolean explicitOnly)
           
 boolean RdfSource.hasStatement(Resource subj, URI pred, Value obj)
           
 boolean RdfSource.hasStatement(Resource subj, URI pred, Value obj, boolean explicitOnly)
           
 Statement RdfSource.createStatement(Resource subject, URI predicate, Value object)
           
 StatementIterator RdfSchemaRepository.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 boolean RdfSchemaRepository.hasExplicitStatement(Resource subj, URI pred, Value obj)
           
 void RdfRepository.addStatement(Resource subj, URI pred, Value obj)
           
 int RdfRepository.removeStatements(Resource subj, URI pred, Value obj)
           
 

Uses of Value in org.openrdf.sesame.sailimpl.rdbms.iterators
 

Methods in org.openrdf.sesame.sailimpl.rdbms.iterators that return Value
 Value RdbmsValueIterator.next()
           
 

Constructors in org.openrdf.sesame.sailimpl.rdbms.iterators with parameters of type Value
RdbmsStatementIterator(RdfSource source, String[] namespaceNames, Connection databaseCon, String queryResources, String queryLiterals, Resource subject, URI predicate, Value object)
          Constructor.
 

Uses of Value in org.openrdf.sesame.sailimpl.rdbms.model
 

Subinterfaces of Value in org.openrdf.sesame.sailimpl.rdbms.model
 interface IdResource
           
 interface IdValue
           
 

Classes in org.openrdf.sesame.sailimpl.rdbms.model that implement Value
 class IdBNode
           
 class IdLiteral
           
 class IdURI
           
 

Methods in org.openrdf.sesame.sailimpl.rdbms.model with parameters of type Value
 void IdURI.addProperty(URI property, Value value)
           
 void IdBNode.addProperty(URI property, Value value)
           
 

Uses of Value in org.openrdf.sesame.sailimpl.sync
 

Methods in org.openrdf.sesame.sailimpl.sync with parameters of type Value
 StatementIterator SyncRdfSchemaRepository.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 boolean SyncRdfSchemaRepository.hasExplicitStatement(Resource subj, URI pred, Value obj)
           
 void SyncRdfRepository.addStatement(Resource subj, URI pred, Value obj)
           
 int SyncRdfRepository.removeStatements(Resource subj, URI pred, Value obj)
           
 StatementIterator SyncRdfRepository.getStatements(Resource subj, URI pred, Value obj)
           
 boolean SyncRdfRepository.hasStatement(Resource subj, URI pred, Value obj)
           
 

Uses of Value in org.openrdf.sesame.server.http
 

Methods in org.openrdf.sesame.server.http with parameters of type Value
static String RdfExplorerUtil.getDisplayString(Value value)
           
static String RdfExplorerUtil.getQueryString(String repository, Value value, boolean useLabels)
           
 



Copyright © 2002-2006 Aduna BV, GNU LGPL License applies.