Uses of Interface
org.openrdf.sesame.sail.StatementIterator

Packages that use StatementIterator
org.openrdf.model RDF model interfaces.  
org.openrdf.model.impl Implementations of the RDF model interfaces. 
org.openrdf.sesame.query.rql.model   
org.openrdf.sesame.query.rql.model.iterators   
org.openrdf.sesame.sail RDF Storage And Inference Layer.  
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.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 StatementIterator in org.openrdf.model
 

Methods in org.openrdf.model that return StatementIterator
 StatementIterator Value.getObjectStatements()
          Gets all statements from the RDF graph for which this value is the object.
 StatementIterator URI.getPredicateStatements()
          Gets all statements from the RDF graph for which this URI is the predicate.
 StatementIterator Resource.getSubjectStatements()
          Gets all statements from the RDF graph for which this resource is the subject.
 StatementIterator Graph.getStatements()
          Retrieves all statements in the graph as an iterator
 StatementIterator Graph.getStatements(Resource subject, URI predicate, Value object)
          Retrieves all statements matching the (subject, predicate, object) pattern in the graph as an iterator.
 

Methods in org.openrdf.model with parameters of type StatementIterator
 void Graph.add(StatementIterator iterator)
          Adds all statements in the iterator to the graph.
 void Graph.add(StatementIterator iterator, boolean joinBlankNodes)
          Adds all statements in the iterator to the graph.
 int Graph.remove(StatementIterator iterator)
          Remove all statements in the StatementIterator from the graph.
 

Uses of StatementIterator in org.openrdf.model.impl
 

Methods in org.openrdf.model.impl that return StatementIterator
 StatementIterator URIImpl.getPredicateStatements()
           
 StatementIterator URIImpl.getSubjectStatements()
           
 StatementIterator URIImpl.getObjectStatements()
           
 StatementIterator LiteralImpl.getObjectStatements()
           
 StatementIterator GraphImpl.getStatements()
           
 StatementIterator GraphImpl.getStatements(Resource subject, URI predicate, Value object)
           
 StatementIterator BNodeImpl.getSubjectStatements()
           
 StatementIterator BNodeImpl.getObjectStatements()
           
 

Methods in org.openrdf.model.impl with parameters of type StatementIterator
 void GraphImpl.add(StatementIterator iterator)
           
 void GraphImpl.add(StatementIterator iterator, boolean joinBlankNodes)
           
 int GraphImpl.remove(StatementIterator iterator)
           
 

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

Methods in org.openrdf.sesame.query.rql.model that return StatementIterator
 StatementIterator Projection.getObjectStatements()
           
 StatementIterator Intersection.getSubjectStatements()
           
 StatementIterator Intersection.getObjectStatements()
           
 

Constructors in org.openrdf.sesame.query.rql.model with parameters of type StatementIterator
Intersection(StatementIterator statIter)
          Creates a new Intersection that is initialized with the objects of the statements from the supplied StatementIterator.
 

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

Constructors in org.openrdf.sesame.query.rql.model.iterators with parameters of type StatementIterator
StatementSubjectIterator(StatementIterator statIter)
           
StatementObjectIterator(StatementIterator statIter)
           
 

Uses of StatementIterator in org.openrdf.sesame.sail
 

Methods in org.openrdf.sesame.sail that return StatementIterator
 StatementIterator RdfSource.getStatements(Resource subj, URI pred, Value obj)
          Gets all statements with a specific subject, predicate and/or object.
 StatementIterator RdfSchemaSource.getExplicitStatements(Resource subj, URI pred, Value obj)
          Gets all explicitly added statements with a specific subject, predicate and/or object.
 StatementIterator RdfSchemaSource.getClasses()
          Gets all defined classes.
 StatementIterator RdfSchemaSource.getProperties()
          Gets all defined properties.
 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.
 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.
 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.
 

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

Classes in org.openrdf.sesame.sail.util that implement StatementIterator
 class EmptyStatementIterator
          A StatementIterator that contains exactly zero statements.
 class SingleStatementIterator
          An iterator over a single statements.
 

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

Methods in org.openrdf.sesame.sailimpl.memory that return StatementIterator
 StatementIterator URINode.getSubjectStatements()
          Gets the list of Statements for which this URINode is the subject.
 StatementIterator URINode.getPredicateStatements()
          Gets the list of Statements for which this URINode is the predicate.
 StatementIterator URINode.getObjectStatements()
          Gets the list of Statements for which this URINode is the object.
 StatementIterator URINode.getDirectSubClassStatements()
           
 StatementIterator URINode.getDirectTypeStatements()
           
 StatementIterator URINode.getDirectSubPropertyStatements()
           
 StatementIterator ResourceNode.getDirectTypeStatements()
           
 StatementIterator ResourceNode.getDirectSubClassStatements()
           
 StatementIterator ResourceNode.getDirectSubPropertyStatements()
           
 StatementIterator RdfSource.getStatements(Resource subj, URI pred, Value obj)
           
 StatementIterator RdfSchemaRepository.getStatements(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)
           
 StatementIterator RdfSchemaRepository.getClasses()
           
 StatementIterator RdfSchemaRepository.getProperties()
           
 StatementIterator RdfSchemaRepository.getSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator RdfSchemaRepository.getDirectSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator RdfSchemaRepository.getSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator RdfSchemaRepository.getDirectSubPropertyOf(Resource subProp, Resource superProp)
           
 StatementIterator RdfSchemaRepository.getDomain(Resource prop, Resource domain)
           
 StatementIterator RdfSchemaRepository.getRange(Resource prop, Resource range)
           
 StatementIterator RdfSchemaRepository.getType(Resource anInstance, Resource aClass)
           
 StatementIterator RdfSchemaRepository.getDirectType(Resource anInstance, Resource aClass)
           
 StatementIterator LiteralNode.getObjectStatements()
          Gets the list of Statements for which this LiteralNode is the object.
 StatementIterator BNodeNode.getSubjectStatements()
          Gets the list of Statements for which this BNodeNode is the subject.
 StatementIterator BNodeNode.getObjectStatements()
          Gets the list of Statements for which this BNodeNode is the object.
 StatementIterator BNodeNode.getDirectSubClassStatements()
           
 StatementIterator BNodeNode.getDirectTypeStatements()
           
 StatementIterator BNodeNode.getDirectSubPropertyStatements()
           
 

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

Classes in org.openrdf.sesame.sailimpl.nativerdf that implement StatementIterator
 class NativeStatementIterator
          An implementation of the RdfRepository interface from the RDF Sail API that stores its data in, and queries it from files on disk.
 

Methods in org.openrdf.sesame.sailimpl.nativerdf that return StatementIterator
 StatementIterator NativeRdfRepository.getStatements(Resource subj, URI pred, Value obj)
           
 

Uses of StatementIterator in org.openrdf.sesame.sailimpl.nativerdf.model
 

Methods in org.openrdf.sesame.sailimpl.nativerdf.model that return StatementIterator
 StatementIterator NativeURI.getSubjectStatements()
           
 StatementIterator NativeURI.getPredicateStatements()
           
 StatementIterator NativeURI.getObjectStatements()
           
 StatementIterator NativeLiteral.getObjectStatements()
           
 StatementIterator NativeBNode.getSubjectStatements()
           
 StatementIterator NativeBNode.getObjectStatements()
           
 

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

Classes in org.openrdf.sesame.sailimpl.omm.security that implement StatementIterator
 class StatementFilterIterator
          StatementFilterIterator.java Title: Knowledge Control System Company: OntoText Lab.
 

Methods in org.openrdf.sesame.sailimpl.omm.security that return StatementIterator
 StatementIterator SecuritySail.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 StatementIterator SecuritySail.getClasses()
           
 StatementIterator SecuritySail.getProperties()
           
 StatementIterator SecuritySail.getSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator SecuritySail.getDirectSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator SecuritySail.getSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator SecuritySail.getDirectSubPropertyOf(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)
           
 StatementIterator SecuritySail.getStatements(Resource subj, URI pred, Value obj)
           
 

Constructors in org.openrdf.sesame.sailimpl.omm.security with parameters of type StatementIterator
StatementFilterIterator(StatementIterator sti, SecurityServices service, Right right)
           
 

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

Methods in org.openrdf.sesame.sailimpl.rdbms that return StatementIterator
 StatementIterator RdfSource.getStatements(Resource subj, URI pred, Value obj)
           
 StatementIterator RdfSource.getStatements(Resource subj, URI pred, Value obj, boolean explicitOnly)
           
 StatementIterator RdfSchemaRepository.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 StatementIterator RdfSchemaRepository.getClasses()
           
 StatementIterator RdfSchemaRepository.getProperties()
           
 StatementIterator RdfSchemaRepository.getSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator RdfSchemaRepository.getDirectSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator RdfSchemaRepository.getSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator RdfSchemaRepository.getDirectSubPropertyOf(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)
           
 

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

Classes in org.openrdf.sesame.sailimpl.rdbms.iterators that implement StatementIterator
 class RdbmsStatementIterator
          A StatementIterator that executes an SQL query.
 

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

Methods in org.openrdf.sesame.sailimpl.rdbms.model that return StatementIterator
 StatementIterator IdURI.getSubjectStatements()
           
 StatementIterator IdURI.getPredicateStatements()
           
 StatementIterator IdURI.getObjectStatements()
           
 StatementIterator IdLiteral.getObjectStatements()
           
 StatementIterator IdBNode.getSubjectStatements()
           
 StatementIterator IdBNode.getObjectStatements()
           
 

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

Methods in org.openrdf.sesame.sailimpl.sync that return StatementIterator
 StatementIterator SyncRdfSchemaRepository.getExplicitStatements(Resource subj, URI pred, Value obj)
           
 StatementIterator SyncRdfSchemaRepository.getClasses()
           
 StatementIterator SyncRdfSchemaRepository.getProperties()
           
 StatementIterator SyncRdfSchemaRepository.getSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator SyncRdfSchemaRepository.getDirectSubClassOf(Resource subClass, Resource superClass)
           
 StatementIterator SyncRdfSchemaRepository.getSubPropertyOf(Resource subProperty, Resource superProperty)
           
 StatementIterator SyncRdfSchemaRepository.getDirectSubPropertyOf(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)
           
 StatementIterator SyncRdfRepository.getStatements(Resource subj, URI pred, Value obj)
           
 



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