Uses of Interface
org.openrdf.model.URI

Packages that use URI
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.rdql.parser   
org.openrdf.sesame.query.rql.model   
org.openrdf.sesame.query.serql.parser   
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.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.  
 

Uses of URI in org.openrdf.model
 

Methods in org.openrdf.model that return URI
 URI ValueFactory.createURI(String uri)
          Creates a new URI from the supplied string-representation.
 URI ValueFactory.createURI(String namespace, String localName)
          Creates a new URI that will get the supplied namespace and local name.
 URI Statement.getPredicate()
          Gets the predicate of this statement.
 URI Literal.getDatatype()
          Gets the datatype for this literal.
 

Methods in org.openrdf.model with parameters of type URI
 Literal ValueFactory.createLiteral(String value, URI datatype)
          Creates a new literal with the supplied value and datatype.
 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 URI in org.openrdf.model.impl
 

Classes in org.openrdf.model.impl that implement URI
 class URIImpl
          An implementation of the URI interface.
 

Fields in org.openrdf.model.impl declared as URI
static URI URIImpl.RDF_TYPE
          Constant URI for rdf:type
static URI URIImpl.RDF_PROPERTY
          Constant URI for rdf:Property
static URI URIImpl.RDF_XMLLITERAL
          Constant URI for rdf:XMLLiteral
static URI URIImpl.RDF_SUBJECT
          Constant URI for rdf:subject
static URI URIImpl.RDF_PREDICATE
          Constant URI for rdf:predicate
static URI URIImpl.RDF_OBJECT
          Constant URI for rdf:object
static URI URIImpl.RDF_STATEMENT
          Constant URI for rdf:Statement
static URI URIImpl.RDF_ALT
          Constant URI for rdf:Alt
static URI URIImpl.RDF_BAG
          Constant URI for rdf:Bag
static URI URIImpl.RDF_SEQ
          Constant URI for rdf:Seq
static URI URIImpl.RDF_VALUE
          Constant URI for rdf:value
static URI URIImpl.RDF_LIST
          Constant URI for rdf:List
static URI URIImpl.RDF_FIRST
          Constant URI for rdf:first
static URI URIImpl.RDF_REST
          Constant URI for rdf:rest
static URI URIImpl.RDF_NIL
          Constant URI for rdf:nil
static URI URIImpl.RDFS_RESOURCE
          Constant URI for rdfs:Resource
static URI URIImpl.RDFS_CLASS
          Constant URI for rdfs:Class
static URI URIImpl.RDFS_LITERAL
          Constant URI for rdfs:Literal
static URI URIImpl.RDFS_SUBCLASSOF
          Constant URI for rdfs:subClassOf
static URI URIImpl.RDFS_SUBPROPERTYOF
          Constant URI for rdfs:subPropertyOf
static URI URIImpl.RDFS_DOMAIN
          Constant URI for rdfs:domain
static URI URIImpl.RDFS_RANGE
          Constant URI for rdfs:range
static URI URIImpl.RDFS_COMMENT
          Constant URI for rdfs:comment
static URI URIImpl.RDFS_LABEL
          Constant URI for rdfs:label
static URI URIImpl.RDFS_ISDEFINEDBY
          Constant URI for rdfs:isDefinedBy
static URI URIImpl.RDFS_SEEALSO
          Constant URI for rdfs:seeAlso
static URI URIImpl.RDFS_DATATYPE
          Constant URI for rdfs:Datatype
static URI URIImpl.RDFS_CONTAINER
          Constant URI for rdfs:Container
static URI URIImpl.RDFS_MEMBER
          Constant URI for rdfs:member
static URI URIImpl.RDFS_CONTAINERMEMBERSHIPPROPERTY
          Constant URI for rdfs:ContainerMembershipProperty
 

Methods in org.openrdf.model.impl that return URI
 URI ValueFactoryImpl.createURI(String uri)
           
 URI ValueFactoryImpl.createURI(String namespace, String localName)
           
 URI StatementImpl.getPredicate()
           
 URI LiteralImpl.getDatatype()
           
 

Methods in org.openrdf.model.impl with parameters of type URI
 Literal ValueFactoryImpl.createLiteral(String value, URI datatype)
           
 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 URI
StatementImpl(Resource subject, URI predicate, Value object)
          Creates a new Statement with the supplied subject, predicate and object.
LiteralImpl(String label, URI datatype)
          Creates a new Literal which will get the supplied label and datatype.
 

Uses of URI in org.openrdf.rio
 

Methods in org.openrdf.rio with parameters of type URI
 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 URI in org.openrdf.rio.n3
 

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

Uses of URI in org.openrdf.rio.ntriples
 

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

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

Uses of URI in org.openrdf.rio.rdfxml
 

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

Uses of URI in org.openrdf.rio.turtle
 

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

Uses of URI in org.openrdf.sesame.admin
 

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

Uses of URI in org.openrdf.sesame.omm
 

Methods in org.openrdf.sesame.omm with parameters of type URI
 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.
 

Uses of URI in org.openrdf.sesame.query
 

Methods in org.openrdf.sesame.query with parameters of type URI
 void StdOutGraphQueryResultWriter.triple(Resource subj, URI pred, Value obj)
           
 void RdfGraphWriter.triple(Resource subj, URI pred, Value obj)
           
 void QueryResultsGraphBuilder.triple(Resource subj, URI pred, Value obj)
           
 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)
           
 

Uses of URI in org.openrdf.sesame.query.rdql.parser
 

Fields in org.openrdf.sesame.query.rdql.parser declared as URI
static URI RdqlParser.XSD_INTEGER
           
static URI RdqlParser.XSD_FLOAT
           
 

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

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

Constructors in org.openrdf.sesame.query.rql.model with parameters of type URI
URI(URI uri)
           
 

Uses of URI in org.openrdf.sesame.query.serql.parser
 

Fields in org.openrdf.sesame.query.serql.parser declared as URI
static URI SerqlParser.SERQL_DIRECTSUBCLASSOF
           
static URI SerqlParser.SERQL_DIRECTSUBPROPERTYOF
           
static URI SerqlParser.SERQL_DIRECTTYPE
           
static URI SerqlParser.XSD_INTEGER
           
static URI SerqlParser.XSD_DECIMAL
           
 

Uses of URI in org.openrdf.sesame.repository
 

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

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

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

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

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

Uses of URI in org.openrdf.sesame.sail
 

Methods in org.openrdf.sesame.sail with parameters of type URI
 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.
 LiteralIterator RdfSchemaSource.getLiterals(String label, String language, URI datatype)
          Gets all literals with a specific label, language and/or datatype.
 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 URI in org.openrdf.sesame.sailimpl.memory
 

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

Methods in org.openrdf.sesame.sailimpl.memory that return URI
 URI RdfSource.createURI(String uri)
           
 URI RdfSource.createURI(String namespace, String localName)
           
 

Methods in org.openrdf.sesame.sailimpl.memory with parameters of type URI
 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)
           
 Literal RdfSource.createLiteral(String value, URI datatype)
           
 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)
           
 LiteralIterator RdfSchemaRepository.getLiterals(String label, String language, URI datatype)
           
 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 URI
MemStatement(Resource subject, URI predicate, Value object)
           
MemStatement(Resource subject, URI predicate, Value object, boolean explicit)
           
MemLiteralIterator(Collection literals, String label, String language, URI datatype)
          Creates a new LiteralIterator that iterates over all objects in the supplied list, only returning the ones that have the specified label, language and/or datatype.
LiteralNode(RdfSource source, String label, URI datatype)
          Creates a new Literal which will get the supplied label and datatype.
 

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

Methods in org.openrdf.sesame.sailimpl.nativerdf that return URI
 URI ValueStore.createURI(String uri)
           
 URI ValueStore.createURI(String namespace, String localName)
           
 

Methods in org.openrdf.sesame.sailimpl.nativerdf with parameters of type URI
 Literal ValueStore.createLiteral(String value, URI datatype)
           
 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 URI
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 URI in org.openrdf.sesame.sailimpl.nativerdf.model
 

Classes in org.openrdf.sesame.sailimpl.nativerdf.model that implement URI
 class NativeURI
           
 

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

Constructors in org.openrdf.sesame.sailimpl.nativerdf.model with parameters of type URI
NativeURI(NativeRdfRepository repository, URI uri)
           
NativeLiteral(NativeRdfRepository repository, String label, URI datatype)
           
 

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

Methods in org.openrdf.sesame.sailimpl.omm.security with parameters of type URI
 StatementIterator SecuritySail.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 boolean SecuritySail.hasExplicitStatement(Resource subj, URI pred, Value obj)
           
 LiteralIterator SecuritySail.getLiterals(String label, String language, URI datatype)
           
 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)
           
 

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

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

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

Methods in org.openrdf.sesame.sailimpl.rdbms that return URI
 URI RdfSource.createURI(String uri)
           
 URI RdfSource.createURI(String namespace, String localName)
           
 

Methods in org.openrdf.sesame.sailimpl.rdbms with parameters of type URI
 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)
           
 Literal RdfSource.createLiteral(String value, URI datatype)
           
 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)
           
 LiteralIterator RdfSchemaRepository.getLiterals(String label, String language, URI datatype)
           
 void RdfRepository.addStatement(Resource subj, URI pred, Value obj)
           
 int RdfRepository.removeStatements(Resource subj, URI pred, Value obj)
           
 

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

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

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

Classes in org.openrdf.sesame.sailimpl.rdbms.model that implement URI
 class IdURI
           
 

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

Constructors in org.openrdf.sesame.sailimpl.rdbms.model with parameters of type URI
IdURI(RdfSource source, URI uri, int internalId)
           
IdLiteral(RdfSource source, String label, URI datatype, int internalId)
           
 

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

Methods in org.openrdf.sesame.sailimpl.sync with parameters of type URI
 StatementIterator SyncRdfSchemaRepository.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 boolean SyncRdfSchemaRepository.hasExplicitStatement(Resource subj, URI pred, Value obj)
           
 LiteralIterator SyncRdfSchemaRepository.getLiterals(String label, String language, URI datatype)
           
 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)
           
 



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