Uses of Interface
org.openrdf.model.Resource

Packages that use Resource
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 Resource in org.openrdf.model
 

Subinterfaces of Resource in org.openrdf.model
 interface BNode
          A blank node (aka bnode, aka anonymous node).
 interface URI
          A URI.
 

Methods in org.openrdf.model that return Resource
 Resource Statement.getSubject()
          Gets the subject of this statement.
 

Methods in org.openrdf.model with parameters of type Resource
 Statement ValueFactory.createStatement(Resource subject, URI predicate, Value object)
          Creates a new statement with the supplied subject, predicate and object.
 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 Resource in org.openrdf.model.impl
 

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

Methods in org.openrdf.model.impl that return Resource
 Resource StatementImpl.getSubject()
           
 

Methods in org.openrdf.model.impl with parameters of type Resource
 Statement ValueFactoryImpl.createStatement(Resource subject, URI predicate, Value object)
           
 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)
           
 

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

Uses of Resource in org.openrdf.rio
 

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

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

Uses of Resource in org.openrdf.rio.ntriples
 

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

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

Uses of Resource in org.openrdf.rio.rdfxml
 

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

Uses of Resource in org.openrdf.rio.turtle
 

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

Uses of Resource in org.openrdf.sesame.admin
 

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

Uses of Resource in org.openrdf.sesame.omm
 

Methods in org.openrdf.sesame.omm that return Resource
 Resource SecurityServices.getResource(int id)
          Gets a resource given its id
 

Methods in org.openrdf.sesame.omm with parameters of type Resource
 boolean SecurityServices.isResourceAccessible(Resource res)
          Checks the accessibility of a resource according the security policy and the existence of a Read right over the resource.
 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.
 int SecurityServices.getResourceId(Resource res)
          Gets the id associated with a resource.
 

Uses of Resource in org.openrdf.sesame.query
 

Methods in org.openrdf.sesame.query with parameters of type Resource
 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 Resource in org.openrdf.sesame.query.rql.model
 

Classes in org.openrdf.sesame.query.rql.model that implement Resource
 class Intersection
          An intersection of classes.
 

Methods in org.openrdf.sesame.query.rql.model that return Resource
 Resource Intersection.getFirstMember()
           
 

Methods in org.openrdf.sesame.query.rql.model with parameters of type Resource
 void Intersection.add(Resource resource)
          Adds a resource to this intersection.
 boolean Intersection.containsInstance(Resource instance, RdfSchemaSource rss)
          Checks if the supplied resource is an instance of all classes of this intersection, using the supplied RdfSchemaSource to check the instance relations.
 

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

Methods in org.openrdf.sesame.query.rql.model.iterators that return Resource
 Resource StatementSubjectIterator.nextResource()
           
 Resource StatementObjectIterator.nextResource()
           
 Resource NestedResourceIterator.nextResource()
           
 

Methods in org.openrdf.sesame.query.rql.model.iterators with parameters of type Resource
abstract  ValueIterator NestedValueIterator.getInnerIterator(Resource outerResource)
           
 

Uses of Resource in org.openrdf.sesame.repository
 

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

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

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

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

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

Uses of Resource in org.openrdf.sesame.sail
 

Methods in org.openrdf.sesame.sail that return Resource
 Resource ResourceIterator.nextResource()
          Gets the next Resource.
 

Methods in org.openrdf.sesame.sail with parameters of type Resource
 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.
 boolean RdfSchemaSource.isClass(Resource resource)
          Checks whether the supplied resource represents a class.
 boolean RdfSchemaSource.isProperty(Resource resource)
          Checks whether the supplied resource represents a property.
 StatementIterator RdfSchemaSource.getSubClassOf(Resource subClass, Resource superClass)
          Gets all subClassOf relations with a specific sub- and/or superclass.
 StatementIterator RdfSchemaSource.getDirectSubClassOf(Resource subClass, Resource superClass)
          Gets all direct subClassOf relations with a specific sub- and/or superclass.
 boolean RdfSchemaSource.isSubClassOf(Resource subClass, Resource superClass)
          Checks whether one resource is a subclass of another.
 boolean RdfSchemaSource.isDirectSubClassOf(Resource subClass, Resource superClass)
          Checks whether one resource is a direct subclass of another.
 StatementIterator RdfSchemaSource.getSubPropertyOf(Resource subProperty, Resource superProperty)
          Gets all subPropertyOf relations with a specific sub- and/or superproperty.
 StatementIterator RdfSchemaSource.getDirectSubPropertyOf(Resource subProperty, Resource superProperty)
          Gets all direct subPropertyOf relations with a specific sub- and/or superproperty.
 boolean RdfSchemaSource.isSubPropertyOf(Resource subProperty, Resource superProperty)
          Checks whether one resource is a subproperty of another.
 boolean RdfSchemaSource.isDirectSubPropertyOf(Resource subProperty, Resource superProperty)
          Checks whether one resource is a direct subproperty of another.
 StatementIterator RdfSchemaSource.getDomain(Resource prop, Resource domain)
          Gets all domain relations with a specific property and/or domain class.
 StatementIterator RdfSchemaSource.getRange(Resource prop, Resource range)
          Gets all range relations with a specific property and/or range class.
 StatementIterator RdfSchemaSource.getType(Resource anInstance, Resource aClass)
          Gets all type relations with a specific instance and/or class.
 StatementIterator RdfSchemaSource.getDirectType(Resource anInstance, Resource aClass)
          Gets all direct type relations with a specific instance and/or class.
 boolean RdfSchemaSource.isType(Resource anInstance, Resource aClass)
          Checks whether one resource is an instance of another.
 boolean RdfSchemaSource.isDirectType(Resource anInstance, Resource aClass)
          Checks whether one resource is a direct instance of another.
 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 Resource in org.openrdf.sesame.sail.query
 

Constructors in org.openrdf.sesame.sail.query with parameters of type Resource
ResourceExpr(Resource r)
           
 

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

Methods in org.openrdf.sesame.sail.util that return Resource
 Resource SingleResourceIterator.nextResource()
           
 Resource ResourceCollectionIterator.nextResource()
           
 Resource EmptyStatementIterator.getSubject()
          Deprecated. Replaced by Statement.getSubject().
 Resource EmptyStatementIterator.getPredicate()
          Deprecated. Replaced by Statement.getPredicate().
 Resource EmptyResourceIterator.nextResource()
          Always throws a NoSuchElementException as there are no results in an EmptyResourceIterator.
 

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

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

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

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

Methods in org.openrdf.sesame.sailimpl.memory that return Resource
 Resource MemResourceIterator.nextResource()
           
 

Methods in org.openrdf.sesame.sailimpl.memory with parameters of type Resource
 boolean URINode.isDirectSubClass(Resource aClass)
           
 boolean URINode.isDirectType(Resource aClass)
           
 boolean URINode.isDirectSubProperty(Resource aProperty)
           
 boolean ResourceNode.isDirectType(Resource aClass)
           
 boolean ResourceNode.isDirectSubClass(Resource aClass)
           
 boolean ResourceNode.isDirectSubProperty(Resource aProperty)
           
 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)
           
 boolean RdfSchemaRepository.isClass(Resource resource)
           
 boolean RdfSchemaRepository.isProperty(Resource resource)
           
 StatementIterator RdfSchemaRepository.getSubClassOf(Resource subClass, Resource superClass)
           
 boolean RdfSchemaRepository.isSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator RdfSchemaRepository.getDirectSubClassOf(Resource subClass, Resource superClass)
           
 boolean RdfSchemaRepository.isDirectSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator RdfSchemaRepository.getSubPropertyOf(Resource subProperty, Resource superProperty)
           
 boolean RdfSchemaRepository.isSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator RdfSchemaRepository.getDirectSubPropertyOf(Resource subProp, Resource superProp)
           
 boolean RdfSchemaRepository.isDirectSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator RdfSchemaRepository.getDomain(Resource prop, Resource domain)
           
 StatementIterator RdfSchemaRepository.getRange(Resource prop, Resource range)
           
 StatementIterator RdfSchemaRepository.getType(Resource anInstance, Resource aClass)
           
 boolean RdfSchemaRepository.isType(Resource anInstance, Resource aClass)
           
 StatementIterator RdfSchemaRepository.getDirectType(Resource anInstance, Resource aClass)
           
 boolean RdfSchemaRepository.isDirectType(Resource anInstance, Resource aClass)
           
 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)
           
 boolean BNodeNode.isDirectSubClass(Resource aClass)
           
 boolean BNodeNode.isDirectType(Resource aClass)
           
 boolean BNodeNode.isDirectSubProperty(Resource aProperty)
           
 

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

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

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

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

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

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

Methods in org.openrdf.sesame.sailimpl.omm.security that return Resource
 Resource SecuritySail.getResource(int id)
           
 Resource ResourceFilterIterator.nextResource()
           
 

Methods in org.openrdf.sesame.sailimpl.omm.security with parameters of type Resource
 StatementIterator SecuritySail.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 boolean SecuritySail.hasExplicitStatement(Resource subj, URI pred, Value obj)
           
 boolean SecuritySail.isClass(Resource resource)
           
 boolean SecuritySail.isProperty(Resource resource)
           
 StatementIterator SecuritySail.getSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator SecuritySail.getDirectSubClassOf(Resource subClass, Resource superClass)
           
 boolean SecuritySail.isSubClassOf(Resource subClass, Resource superClass)
           
 boolean SecuritySail.isDirectSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator SecuritySail.getSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator SecuritySail.getDirectSubPropertyOf(Resource subProperty, Resource superProperty)
           
 boolean SecuritySail.isSubPropertyOf(Resource subProperty, Resource superProperty)
           
 boolean SecuritySail.isDirectSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator SecuritySail.getDomain(Resource prop, Resource domain)
           
 StatementIterator SecuritySail.getRange(Resource prop, Resource range)
           
 StatementIterator SecuritySail.getType(Resource anInstance, Resource aClass)
           
 StatementIterator SecuritySail.getDirectType(Resource anInstance, Resource aClass)
           
 boolean SecuritySail.isType(Resource anInstance, Resource aClass)
           
 boolean SecuritySail.isDirectType(Resource anInstance, Resource aClass)
           
 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)
           
 int SecuritySail.getResourceId(Resource res)
           
 boolean SecuritySail.isStatementAccessible(Resource subj, URI pred, Value obj, Right right)
           
 boolean SecuritySail.isResourceAccessible(Resource res, Right right)
           
 boolean SecuritySail.isResourceAccessible(Resource res)
           
 

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

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

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

Methods in org.openrdf.sesame.sailimpl.rdbms with parameters of type Resource
 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)
           
 boolean RdfSchemaRepository.isClass(Resource resource)
           
 boolean RdfSchemaRepository.isProperty(Resource resource)
           
 StatementIterator RdfSchemaRepository.getSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator RdfSchemaRepository.getDirectSubClassOf(Resource subClass, Resource superClass)
           
 boolean RdfSchemaRepository.isSubClassOf(Resource subClass, Resource superClass)
           
 boolean RdfSchemaRepository.isDirectSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator RdfSchemaRepository.getSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator RdfSchemaRepository.getDirectSubPropertyOf(Resource subProperty, Resource superProperty)
           
 boolean RdfSchemaRepository.isSubPropertyOf(Resource subProperty, Resource superProperty)
           
 boolean RdfSchemaRepository.isDirectSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator RdfSchemaRepository.getDomain(Resource prop, Resource domain)
           
 StatementIterator RdfSchemaRepository.getRange(Resource prop, Resource domain)
           
 StatementIterator RdfSchemaRepository.getType(Resource anInstance, Resource aClass)
           
 StatementIterator RdfSchemaRepository.getDirectType(Resource anInstance, Resource aClass)
           
 boolean RdfSchemaRepository.isType(Resource anInstance, Resource aClass)
           
 boolean RdfSchemaRepository.isDirectType(Resource anInstance, Resource aClass)
           
 void RdfRepository.addStatement(Resource subj, URI pred, Value obj)
           
 int RdfRepository.removeStatements(Resource subj, URI pred, Value obj)
           
 

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

Methods in org.openrdf.sesame.sailimpl.rdbms.iterators that return Resource
 Resource RdbmsResourceIterator.nextResource()
           
 

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

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

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

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

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

Methods in org.openrdf.sesame.sailimpl.sync with parameters of type Resource
 StatementIterator SyncRdfSchemaRepository.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 boolean SyncRdfSchemaRepository.hasExplicitStatement(Resource subj, URI pred, Value obj)
           
 boolean SyncRdfSchemaRepository.isClass(Resource resource)
           
 boolean SyncRdfSchemaRepository.isProperty(Resource resource)
           
 StatementIterator SyncRdfSchemaRepository.getSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator SyncRdfSchemaRepository.getDirectSubClassOf(Resource subClass, Resource superClass)
           
 boolean SyncRdfSchemaRepository.isSubClassOf(Resource subClass, Resource superClass)
           
 boolean SyncRdfSchemaRepository.isDirectSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator SyncRdfSchemaRepository.getSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator SyncRdfSchemaRepository.getDirectSubPropertyOf(Resource subProperty, Resource superProperty)
           
 boolean SyncRdfSchemaRepository.isSubPropertyOf(Resource subProperty, Resource superProperty)
           
 boolean SyncRdfSchemaRepository.isDirectSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator SyncRdfSchemaRepository.getDomain(Resource prop, Resource domain)
           
 StatementIterator SyncRdfSchemaRepository.getRange(Resource prop, Resource range)
           
 StatementIterator SyncRdfSchemaRepository.getType(Resource anInstance, Resource aClass)
           
 StatementIterator SyncRdfSchemaRepository.getDirectType(Resource anInstance, Resource aClass)
           
 boolean SyncRdfSchemaRepository.isType(Resource anInstance, Resource aClass)
           
 boolean SyncRdfSchemaRepository.isDirectType(Resource anInstance, Resource aClass)
           
 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 Resource in org.openrdf.sesame.server.http
 

Methods in org.openrdf.sesame.server.http with parameters of type Resource
static String RdfExplorerUtil.getLabelForResource(Resource resource, RdfSource rdfSource)
           
 



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