Uses of Interface
com.hp.hpl.jena.util.iterator.ExtendedIterator

Packages that use ExtendedIterator
com.hp.hpl.jena.db A general database backend for persistent storage of Jena models. 
com.hp.hpl.jena.graph This package defines the Graph and Node family of classes, which form the underlying datatypes of the Jena system. 
com.hp.hpl.jena.graph.compose This package defines simple composite graphs - union, intersection, difference, and update-tracking. 
com.hp.hpl.jena.graph.query Defines the graph-level Query classes, allowing multi-pattern query over arbitrary graphs. 
com.hp.hpl.jena.ontology Provides a set of abstractions and convenience classes for accessing and manipluating ontologies represented in RDF. 
com.hp.hpl.jena.rdf.model A package for creating and manipulating RDF graphs. 
com.hp.hpl.jena.reasoner The Jena2 reasoner subsystem is designed to allow a range of inference engines to be plugged into Jena. 
com.hp.hpl.jena.reasoner.rulesys Provides a selection of simple rule engines for Jena inference models. 
com.hp.hpl.jena.reasoner.transitiveReasoner This package contains a reasoner which supports transitive-reflexive closure of subPropertyOf and subClassOf relations. 
com.hp.hpl.jena.shared This package defines some classes common to the Jena API and SPI levels, in particular the JenaException class from which all Jena-specific exceptions hang, and the interface PrefixMapping for translation to and from QNames. 
com.hp.hpl.jena.util Miscellaneous collection of utility classes. 
com.hp.hpl.jena.util.iterator A package for defining useful iterators and iterator operations, including concatenation, mapping, filtering, empty and singleton iterators, iterator wrappers, and the ExtendedIterator class used in many places in Jena. 
 

Uses of ExtendedIterator in com.hp.hpl.jena.db
 

Methods in com.hp.hpl.jena.db that return ExtendedIterator
 ExtendedIterator<java.lang.String> DBConnection.getAllModelNames()
           
 ExtendedIterator<java.lang.String> IDBConnection.getAllModelNames()
          Retrieve a list of all models in the database
 ExtendedIterator<Triple> GraphRDB.getPropertyTriples()
          Returns triples that describe this graph in the system properties graph.
 ExtendedIterator<Triple> GraphRDB.graphBaseFind(TripleMatch m)
           
static ExtendedIterator<java.lang.String> ModelRDB.listModels(IDBConnection dbcon)
          List the names of all models stored in the database
 ExtendedIterator<Triple> GraphRDB.reifierTriples(TripleMatch m)
           
 

Uses of ExtendedIterator in com.hp.hpl.jena.graph
 

Subinterfaces of ExtendedIterator in com.hp.hpl.jena.graph
 interface TripleIterator
          An extended iterator that can return its next element as a Triple.
 

Classes in com.hp.hpl.jena.graph that implement ExtendedIterator
 class TripleMatchIterator
          An iterator that selects triples from an underlying iterators of triples It used to take TripleMatch's, but those are obsolete.
 

Fields in com.hp.hpl.jena.graph declared as ExtendedIterator
static ExtendedIterator<Triple> Triple.None
          A triple-iterator with no elements.
 

Methods in com.hp.hpl.jena.graph that return ExtendedIterator
 ExtendedIterator<Node> Reifier.allNodes()
          return an iterator over all the nodes that are reifiying something in this reifier.
 ExtendedIterator<Node> Reifier.allNodes(Triple t)
          return an iterator over all the nodes that are reifiying t in this reifier.
 ExtendedIterator<Triple> Graph.find(Node s, Node p, Node o)
          Returns an iterator over Triple.
 ExtendedIterator<Triple> Graph.find(TripleMatch m)
          Returns an iterator over all the Triples that match the triple pattern.
 ExtendedIterator<Triple> Reifier.find(TripleMatch m)
          Answer an iterator over all the reification triples in this Reifier that match m.
static ExtendedIterator<Triple> GraphUtil.findAll(Graph g)
          Answer an iterator covering all the triples in the specified graph.
 ExtendedIterator<Triple> Reifier.findEither(TripleMatch m, boolean showHidden)
          Answer an iterator over the reification triples of this Reifier, or an empty iterator - if showHidden is false, only the exposed triples, otherwise only the concealed ones.
 ExtendedIterator<Triple> Reifier.findExposed(TripleMatch m)
          Answer an iterator over all the reification triples that this Reifier exposes (ie all if Standard, none otherwise) that match m.
 ExtendedIterator<java.lang.String> GraphMaker.listGraphs()
          Answer an [extended] iterator where each element is the name of a graph in the maker, and the complete sequence exhausts the set of names.
 

Uses of ExtendedIterator in com.hp.hpl.jena.graph.compose
 

Methods in com.hp.hpl.jena.graph.compose that return ExtendedIterator
 ExtendedIterator<Triple> Delta.graphBaseFind(TripleMatch tm)
          Find all the base triples matching tm, exclude the ones that are deleted, add the ones that have been added.
 ExtendedIterator<Triple> Difference.graphBaseFind(TripleMatch t)
           
 ExtendedIterator<Triple> DisjointUnion.graphBaseFind(TripleMatch m)
           
 ExtendedIterator<Triple> Intersection.graphBaseFind(TripleMatch s)
           
 ExtendedIterator<Triple> MultiUnion.graphBaseFind(TripleMatch t)
           Answer an iterator over the triples in the union of the graphs in this composition.
 ExtendedIterator<Triple> Union.graphBaseFind(TripleMatch t)
          To find in the union, find in the components, concatenate the results, and omit duplicates.
static
<T> ExtendedIterator<T>
CompositionBase.recording(ClosableIterator<T> i, java.util.Set<T> seen)
           Answer an iterator that will record every element delived by next() in the set seen.
static ExtendedIterator<Triple> CompositionBase.rejecting(ExtendedIterator<Triple> i, Graph seen)
          Answer an iterator over the elements of i that are not in the graph seen.
static ExtendedIterator<Triple> CompositionBase.rejecting(ExtendedIterator<Triple> i, java.util.Set<Triple> seen)
           Answer an iterator over the elements of iterator i that are not in the set seen.
 

Methods in com.hp.hpl.jena.graph.compose with parameters of type ExtendedIterator
static ExtendedIterator<Triple> CompositionBase.rejecting(ExtendedIterator<Triple> i, Graph seen)
          Answer an iterator over the elements of i that are not in the graph seen.
static ExtendedIterator<Triple> CompositionBase.rejecting(ExtendedIterator<Triple> i, java.util.Set<Triple> seen)
           Answer an iterator over the elements of iterator i that are not in the set seen.
 

Uses of ExtendedIterator in com.hp.hpl.jena.graph.query
 

Methods in com.hp.hpl.jena.graph.query that return ExtendedIterator
 ExtendedIterator<Domain> BindingQueryPlan.executeBindings()
           
 ExtendedIterator<Domain> SimpleQueryPlan.executeBindings()
           
 ExtendedIterator<Domain> Query.executeBindings(Graph g, java.util.List<Stage> stages, Node[] results)
           
 ExtendedIterator<Domain> Query.executeBindings(Graph g, Node[] results)
           
 ExtendedIterator<Domain> Query.executeBindings(java.util.List<Stage> outStages, NamedGraphMap args, Node[] nodes)
          the standard "default" implementation of executeBindings.
 ExtendedIterator<Domain> SimpleQueryEngine.executeBindings(java.util.List<Stage> outStages, NamedGraphMap args, Node[] nodes)
           
 ExtendedIterator<Domain> Query.executeBindings(NamedGraphMap args, Node[] nodes)
           
static ExtendedIterator<Node> SimpleQueryHandler.objectsFor(Graph g, Node s, Node p)
           
 ExtendedIterator<Node> QueryHandler.objectsFor(Node s, Node p)
          deliver an iterator over all the objects _o_ such that _(s, p, o)_ is in the underlying graph; nulls count as wildcards. .remove() is not defined on this iterator.
 ExtendedIterator<Node> SimpleQueryHandler.objectsFor(Node s, Node p)
           
static ExtendedIterator<Node> SimpleQueryHandler.predicatesFor(Graph g, Node s, Node o)
           
 ExtendedIterator<Node> QueryHandler.predicatesFor(Node s, Node o)
          Answer an iterator over all the predicates p such that (s, p, o) is in the underlying graph. .remove() is not defined on this iterator.
 ExtendedIterator<Node> SimpleQueryHandler.predicatesFor(Node s, Node o)
           
static ExtendedIterator<Node> SimpleQueryHandler.subjectsFor(Graph g, Node p, Node o)
           
 ExtendedIterator<Node> QueryHandler.subjectsFor(Node p, Node o)
          deliver an iterator over all the subjects _s_ such that _(s, p, o)_ is in the underlying graph; nulls count as wildcards. .remove() is not defined on this iterator.
 ExtendedIterator<Node> SimpleQueryHandler.subjectsFor(Node p, Node o)
           
 

Uses of ExtendedIterator in com.hp.hpl.jena.ontology
 

Methods in com.hp.hpl.jena.ontology that return ExtendedIterator
 ExtendedIterator<AllDifferent> OntModel.listAllDifferent()
           Answer an iterator that ranges over the nodes that denote pair-wise disjointness between sets of classes.
 ExtendedIterator<OntProperty> OntModel.listAllOntProperties()
          Answer an iterator over all of the ontology properties in this model, including object properties, datatype properties, annotation properties, etc.
 ExtendedIterator<AnnotationProperty> OntModel.listAnnotationProperties()
           Answer an iterator that ranges over the properties in this model that are declared to be annotation properties.
 ExtendedIterator<OntResource> Ontology.listBackwardCompatibleWith()
          Answer an iterator over all of the resources representing ontologies that this ontology is backwards compatible with.
 ExtendedIterator<OntClass> OntModel.listClasses()
           Answer an iterator that ranges over all of the various forms of class description resource in this model.
 ExtendedIterator<RDFNode> OntResource.listComments(java.lang.String lang)
          Answer an iterator over all of the comment literals for this resource.
 ExtendedIterator<ComplementClass> OntModel.listComplementClasses()
           Answer an iterator that ranges over the complement class-descriptions in this model, i.e. the class resources specified to have a property complementOf (or equivalent) and a list of values.
 ExtendedIterator<DataRange> OntModel.listDataRanges()
          Answer an iterator over the DataRange objects in this ontology, if there are any.
 ExtendedIterator<DatatypeProperty> OntModel.listDatatypeProperties()
           Answer an iterator that ranges over the datatype property resources in this model, i.e. the resources with rdf:type DatatypeProperty or equivalent.
 ExtendedIterator<OntProperty> OntClass.listDeclaredProperties()
          Answer an iteration of the properties associated with a frame-like view of this class.
 ExtendedIterator<OntProperty> OntClass.listDeclaredProperties(boolean direct)
          Answer an iteration of the properties associated with a frame-like view of this class.
 ExtendedIterator<? extends OntClass> OntProperty.listDeclaringClasses()
          Answer an iterator of all of the classes in this ontology, such that each returned class has this property as one of its properties in OntClass.listDeclaredProperties().
 ExtendedIterator<? extends OntClass> OntProperty.listDeclaringClasses(boolean direct)
          Answer an iterator of all of the classes in this ontology, such that each returned class has this property as one of its properties in OntClass.listDeclaredProperties(boolean).
 ExtendedIterator<? extends Resource> OntResource.listDifferentFrom()
          Answer an iterator over all of the resources that are declared to be different from this resource.
 ExtendedIterator<OntClass> OntClass.listDisjointWith()
          Answer an iterator over all of the classes that this class is declared to be disjoint with.
 ExtendedIterator<? extends OntResource> AllDifferent.listDistinctMembers()
          Answer an iterator over all of the individuals that are declared to be distinct by this AllDifferent declaration.
 ExtendedIterator<? extends OntResource> OntProperty.listDomain()
          Answer an iterator over all of the declared domain classes of this property.
 ExtendedIterator<EnumeratedClass> OntModel.listEnumeratedClasses()
           Answer an iterator that ranges over the enumerated class class-descriptions in this model, i.e. the class resources specified to have a property oneOf (or equivalent) and a list of values.
 ExtendedIterator<OntClass> OntClass.listEquivalentClasses()
          Answer an iterator over all of the classes that are known to be equivalent to this class.
 ExtendedIterator<? extends OntProperty> OntProperty.listEquivalentProperties()
          Answer an iterator over all of the properties that are declared to be equivalent properties to this property.
 ExtendedIterator<FunctionalProperty> OntModel.listFunctionalProperties()
           Answer an iterator that ranges over the functional property resources in this model, i.e. the resources with rdf:type FunctionalProperty or equivalent.
 ExtendedIterator<OntClass> OntModel.listHierarchyRootClasses()
          Answer an iterator over the classes in this ontology model that represent the uppermost nodes of the class hierarchy.
 ExtendedIterator<OntModel> OntModel.listImportedModels()
          Deprecated. This method has been re-named to listSubModels, but note that to obtain the same behaviour as listImportedModels from Jena 2.4 and earlier, callers should invoke OntModel.listSubModels(boolean) with parameter true.
 ExtendedIterator<OntResource> Ontology.listImports()
          Answer an iterator over all of the resources representing ontologies imported by this ontology.
 ExtendedIterator<OntResource> Ontology.listIncompatibleWith()
          Answer an iterator over all of the resources representing ontologies that this ontology is incompatible with.
 ExtendedIterator<Individual> OntModel.listIndividuals()
           Answer an iterator that ranges over the individual resources in this model, i.e. the resources with rdf:type corresponding to a class defined in the ontology.
 ExtendedIterator<Individual> OntModel.listIndividuals(Resource cls)
           Answer an iterator that ranges over the resources in this model that are instances of the given class.
 ExtendedIterator<? extends OntResource> OntClass.listInstances()
          Answer an iterator over the individuals in the model that have this class among their types.
 ExtendedIterator<? extends OntResource> OntClass.listInstances(boolean direct)
          Answer an iterator over the individuals in the model that have this class among their types, optionally excluding sub-classes of this class.
 ExtendedIterator<IntersectionClass> OntModel.listIntersectionClasses()
           Answer an iterator that ranges over the intersection class-descriptions in this model, i.e. the class resources specified to have a property intersectionOf (or equivalent) and a list of values.
 ExtendedIterator<? extends OntProperty> OntProperty.listInverse()
          Answer an iterator over the properties that are defined to be inverses of this property.
 ExtendedIterator<InverseFunctionalProperty> OntModel.listInverseFunctionalProperties()
           Answer an iterator that ranges over the inverse functional property resources in this model, i.e. the resources with rdf:type InverseFunctionalProperty or equivalent.
 ExtendedIterator<? extends OntProperty> OntProperty.listInverseOf()
          Answer an iterator over all of the properties that this property is declared to be the inverse of.
 ExtendedIterator<RDFNode> OntResource.listIsDefinedBy()
          Answer an iterator over all of the resources that are declared to define this resource.
 ExtendedIterator<RDFNode> OntResource.listLabels(java.lang.String lang)
          Answer an iterator over all of the label literals for this resource.
 ExtendedIterator<OntClass> OntModel.listNamedClasses()
           Answer an iterator that ranges over the named class-descriptions in this model, i.e. resources with rdf:type Class (or equivalent) and a node URI.
 ExtendedIterator<ObjectProperty> OntModel.listObjectProperties()
           Answer an iterator that ranges over the object property resources in this model, i.e. the resources with rdf:type ObjectProperty or equivalent.
 ExtendedIterator<Literal> DataRange.listOneOf()
          Answer an iterator over all of the literals that are declared to be the permissible values for this class.
 ExtendedIterator<? extends OntResource> EnumeratedClass.listOneOf()
          Answer an iterator over all of the individuals that are declared to be the class extension for this class.
<T extends OntClass>
ExtendedIterator<T>
Individual.listOntClasses(boolean direct)
           Answer an iterator over the ontology classes to which this individual belongs.
 ExtendedIterator<Ontology> OntModel.listOntologies()
           Answer an iterator that ranges over the ontology resources in this model, i.e. the resources with rdf:type Ontology or equivalent.
 ExtendedIterator<OntProperty> OntModel.listOntProperties()
           Answer an iterator that ranges over the property resources in this model, i.e. the resources with rdf:type Property or equivalent.
 ExtendedIterator<? extends OntClass> BooleanClassDescription.listOperands()
          Answer an iterator over all of the classes that are the operands of this Boolean class expression.
 ExtendedIterator<OntResource> Ontology.listPriorVersion()
          Answer an iterator over all of the resources representing ontologies that this ontology supercedes.
 ExtendedIterator<? extends OntResource> OntProperty.listRange()
          Answer an iterator over all of the declared range classes of this property.
 ExtendedIterator<Resource> OntResource.listRDFTypes(boolean direct)
           Answer an iterator over the RDF classes to which this resource belongs.
 ExtendedIterator<Restriction> OntProperty.listReferringRestrictions()
          Answer an iterator over any restrictions that mention this property as the property that the restriction is adding some constraint to.
 ExtendedIterator<Restriction> OntModel.listRestrictions()
           Answer an iterator that ranges over the property restriction class-descriptions in this model, i.e. resources with rdf:type Restriction (or equivalent).
 ExtendedIterator<? extends Resource> OntResource.listSameAs()
          Answer an iterator over all of the resources that are declared to be the same as this resource.
 ExtendedIterator<RDFNode> OntResource.listSeeAlso()
          Answer an iterator over all of the resources that are declared to provide addition information about this resource.
 ExtendedIterator<OntClass> OntClass.listSubClasses()
          Answer an iterator over all of the classes that are declared to be sub-classes of this class.
 ExtendedIterator<OntClass> OntClass.listSubClasses(boolean direct)
           Answer an iterator over the classes that are declared to be sub-classes of this class.
 ExtendedIterator<OntModel> OntModel.listSubModels()
          Answer an iterator over the ontology models that are sub-models of this model.
 ExtendedIterator<OntModel> OntModel.listSubModels(boolean withImports)
          Answer an iterator over the ontology models that are sub-models of this model.
 ExtendedIterator<? extends OntProperty> OntProperty.listSubProperties()
          Answer an iterator over all of the properties that are declared to be sub-properties of this property.
 ExtendedIterator<? extends OntProperty> OntProperty.listSubProperties(boolean direct)
          Answer an iterator over all of the properties that are declared to be sub-properties of this property.
 ExtendedIterator<OntClass> OntClass.listSuperClasses()
          Answer an iterator over all of the classes that are super-classes of this class.
 ExtendedIterator<OntClass> OntClass.listSuperClasses(boolean direct)
          Answer an iterator over all of the classes that are super-classes of this class.
 ExtendedIterator<? extends OntProperty> OntProperty.listSuperProperties()
          Answer an iterator over all of the properties that are declared to be super-properties of this property.
 ExtendedIterator<? extends OntProperty> OntProperty.listSuperProperties(boolean direct)
          Answer an iterator over all of the properties that are declared to be super-properties of this property.
 ExtendedIterator<SymmetricProperty> OntModel.listSymmetricProperties()
           Answer an iterator that ranges over the symmetric property resources in this model, i.e. the resources with rdf:type SymmetricProperty or equivalent.
 ExtendedIterator<TransitiveProperty> OntModel.listTransitiveProperties()
           Answer an iterator that ranges over the transitive property resources in this model, i.e. the resources with rdf:type TransitiveProperty or equivalent.
 ExtendedIterator<UnionClass> OntModel.listUnionClasses()
           Answer an iterator that ranges over the union class-descriptions in this model, i.e. the class resources specified to have a property unionOf (or equivalent) and a list of values.
 ExtendedIterator<java.lang.String> OntResource.listVersionInfo()
          Answer an iterator over all of the version info strings for this resource.
<T extends RDFNode>
ExtendedIterator<T>
OntModel.queryFor(BindingQueryPlan query, java.util.List<BindingQueryPlan> altQueries, java.lang.Class<T> asKey)
           Answer the iterator over the resources from the graph that satisfy the given query, followed by the answers to the alternative queries (if specified).
 

Uses of ExtendedIterator in com.hp.hpl.jena.rdf.model
 

Subinterfaces of ExtendedIterator in com.hp.hpl.jena.rdf.model
 interface NodeIterator
          An iterator which returns RDF nodes.
 interface NsIterator
          An iterator which returns namespace URI's.
 interface ResIterator
          An iterator which returns RDF Resources.
 interface RSIterator
          An RSIterator is a ClosableIterator (qv) which delivers only ReifedStatement's and which has a next-method with that return type.
 interface StmtIterator
          An iterator which returns RDF Statements.
 

Methods in com.hp.hpl.jena.rdf.model that return ExtendedIterator
 ExtendedIterator<RDFNode> RDFList.iterator()
           Answer an iterator over the elements of the list.
 ExtendedIterator<java.lang.String> ModelMaker.listModels()
          Answer an [extended] iterator where each element is the name of a model in the maker, and the complete sequence exhausts the set of names.
<T> ExtendedIterator<T>
RDFList.mapWith(Map1<RDFNode,T> fn)
          Answer an iterator of the elements of this list, to each of which the given map function has been applied.
 

Uses of ExtendedIterator in com.hp.hpl.jena.reasoner
 

Methods in com.hp.hpl.jena.reasoner that return ExtendedIterator
 ExtendedIterator<Triple> BaseInfGraph.find(Node subject, Node property, Node object, Graph param)
          An extension of the Graph.find interface which allows the caller to encode complex expressions in RDF and then refer to those expressions within the query triple.
 ExtendedIterator<Triple> InfGraph.find(Node subject, Node property, Node object, Graph param)
          An extension of the Graph.find interface which allows the caller to encode complex expressions in RDF and then refer to those expressions within the query triple.
 ExtendedIterator<Triple> BaseInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 ExtendedIterator<Triple> FGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 ExtendedIterator<Triple> Finder.find(TriplePattern pattern)
          Basic pattern lookup interface.
abstract  ExtendedIterator<Triple> BaseInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 ExtendedIterator<Triple> FGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 ExtendedIterator<Triple> Finder.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 ExtendedIterator<Triple> BaseInfGraph.graphBaseFind(Node subject, Node property, Node object)
          Returns an iterator over Triples.
 ExtendedIterator<Triple> BaseInfGraph.graphBaseFind(TripleMatch m)
          Returns an iterator over Triples.
 

Uses of ExtendedIterator in com.hp.hpl.jena.reasoner.rulesys
 

Methods in com.hp.hpl.jena.reasoner.rulesys that return ExtendedIterator
 ExtendedIterator<Node> BasicFBReifier.allNodes()
           
 ExtendedIterator<Node> BasicFBReifier.allNodes(Triple t)
           
 ExtendedIterator<Triple> BasicFBReifier.find(TripleMatch m)
           
 ExtendedIterator<Triple> BasicForwardRuleInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 ExtendedIterator<Triple> FBRuleInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 ExtendedIterator<Triple> LPBackwardRuleInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 ExtendedIterator<Triple> BasicForwardRuleInfGraph.findDataMatches(Node subject, Node predicate, Node object)
          Search the combination of data and deductions graphs for the given triple pattern.
 ExtendedIterator<Triple> FBRuleInfGraph.findDataMatches(Node subject, Node predicate, Node object)
          Search the combination of data and deductions graphs for the given triple pattern.
 ExtendedIterator<Triple> ForwardRuleInfGraphI.findDataMatches(Node subject, Node predicate, Node object)
          Search the combination of data and deductions graphs for the given triple pattern.
 ExtendedIterator<Triple> BackwardRuleInfGraphI.findDataMatches(TriplePattern pattern)
          Match a pattern just against the stored data (raw data, schema, axioms) but no backchaining derivation.
 ExtendedIterator<Triple> FBRuleInfGraph.findDataMatches(TriplePattern pattern)
          Search the combination of data and deductions graphs for the given triple pattern.
 ExtendedIterator<Triple> LPBackwardRuleInfGraph.findDataMatches(TriplePattern pattern)
          Match a pattern just against the stored data (raw data, schema, axioms) but no derivation.
 ExtendedIterator<Triple> BasicFBReifier.findEither(TripleMatch m, boolean showHidden)
           
 ExtendedIterator<Triple> BasicFBReifier.findExposed(TripleMatch m)
           
 ExtendedIterator<Triple> FBRuleInfGraph.findFull(TriplePattern pattern)
          Internal variant of find which omits the filters which block illegal RDF data.
 ExtendedIterator<Triple> BasicForwardRuleInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 ExtendedIterator<Triple> FBRuleInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 ExtendedIterator<Triple> LPBackwardRuleInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 ExtendedIterator<Triple> BasicForwardRuleInfGraph.graphBaseFind(Node subject, Node property, Node object)
          Returns an iterator over Triples.
 ExtendedIterator<Triple> FBRuleInfGraph.graphBaseFind(Node subject, Node property, Node object)
          Returns an iterator over Triples.
 ExtendedIterator<Triple> LPBackwardRuleInfGraph.graphBaseFind(Node subject, Node property, Node object)
          Returns an iterator over Triples.
 

Uses of ExtendedIterator in com.hp.hpl.jena.reasoner.transitiveReasoner
 

Methods in com.hp.hpl.jena.reasoner.transitiveReasoner that return ExtendedIterator
 ExtendedIterator<Triple> TransitiveGraphCache.find(TriplePattern pattern)
          Basic pattern lookup interface.
 ExtendedIterator<Triple> TransitiveInfGraph.find(TriplePattern pattern)
          Basic pattern lookup interface.
 ExtendedIterator<Triple> TransitiveGraphCache.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 ExtendedIterator<Triple> TransitiveInfGraph.findWithContinuation(TriplePattern pattern, Finder continuation)
          Extended find interface used in situations where the implementator may or may not be able to answer the complete query.
 ExtendedIterator<Triple> TransitiveInfGraph.graphBaseFind(Node subject, Node property, Node object)
          Returns an iterator over Triples.
 ExtendedIterator<Node> TransitiveGraphCache.listAllSubjects()
          Return an iterator over all registered subject nodes
 

Uses of ExtendedIterator in com.hp.hpl.jena.shared
 

Methods in com.hp.hpl.jena.shared that return ExtendedIterator
 ExtendedIterator<Triple> RandomOrderGraph.find(Node s, Node p, Node o)
           
 ExtendedIterator<Triple> RandomOrderGraph.find(TripleMatch m)
           
 

Uses of ExtendedIterator in com.hp.hpl.jena.util
 

Methods in com.hp.hpl.jena.util that return ExtendedIterator
static ExtendedIterator<java.util.List<? extends RDFNode>> ModelQueryUtil.queryBindingsWith(Model model, Model query, Resource[] variables)
           
 

Uses of ExtendedIterator in com.hp.hpl.jena.util.iterator
 

Classes in com.hp.hpl.jena.util.iterator that implement ExtendedIterator
 class EarlyBindingIterator<T>
          Fully execute the iterator immediately, but pretend we haven't.
 class FilterDropIterator<T>
          A subclass of FiterIterator which discards the elements that pass the filter.
 class FilterIterator<T>
          Creates a sub-Iterator by filtering.
 class FilterKeepIterator<T>
          A subclass of FilterIterator which keeps the elements that pass the test.
 class LazyIterator<T>
          An ExtendedIterator that is created lazily.
 class Map1Iterator<From,To>
          An iterator that consumes an underlying iterator and maps its results before delivering them; supports remove if the underlying iterator does.
 class MapFilterIterator<T,X>
          A MapFilterIterator takes a MapFilter and an [Extended]Iterator and returns a new ExtendedIterator which delivers the sequence of all non-null elements MapFilter(X) for X from the base iterator.
 class NiceIterator<T>
          NiceIterator is the standard base class implementing ExtendedIterator.
 class NullIterator<T>
          An empty iterator.
 class RandomOrderIterator<T>
          RandomOrderIterator - Reorders the elements returned by an Iterator.
 class SingletonIterator<T>
          A ClosableIterator that contains only one element
 class UniqueExtendedIterator<T>
          A variant on the closable/extended iterator that filters out duplicate values.
 class WrappedIterator<T>
          a WrappedIterator is an ExtendedIterator wrapping around a plain (or presented as plain) Iterator.
 

Methods in com.hp.hpl.jena.util.iterator that return ExtendedIterator
 ExtendedIterator<T> LazyIterator.andThen(ClosableIterator<? extends T> other)
           
static
<T> ExtendedIterator<T>
NiceIterator.andThen(java.util.Iterator<T> a, java.util.Iterator<? extends T> b)
          concatenate two closable iterators.
<X extends T>
ExtendedIterator<T>
ExtendedIterator.andThen(java.util.Iterator<X> other)
          return a new iterator which delivers all the elements of this iterator and then all the elements of the other iterator.
<X extends T>
ExtendedIterator<T>
NiceIterator.andThen(java.util.Iterator<X> other)
          make a new iterator, which is us then the other chap.
<X extends T>
ExtendedIterator<T>
NullIterator.andThen(java.util.Iterator<X> it)
           
abstract  ExtendedIterator<T> LazyIterator.create()
          The subclass must define this to return the ExtendedIterator to invoke.
static
<T> ExtendedIterator<T>
UniqueExtendedIterator.create(java.util.Iterator<T> it)
          Factory method for generating an iterator that is guaranteed only to return one instance of every result from the wrapped iterator it.
static
<T> ExtendedIterator<T>
WrappedIterator.create(java.util.Iterator<T> it)
          Answer an ExtendedIterator returning the elements of it.
static
<T> ExtendedIterator<T>
NiceIterator.emptyIterator()
          An iterator over no elements.
 ExtendedIterator<T> ExtendedIterator.filterDrop(Filter<T> f)
          return a new iterator containing only the elements of _this_ which are rejected by the filter _f_.
 ExtendedIterator<T> LazyIterator.filterDrop(Filter<T> f)
           
 ExtendedIterator<T> NiceIterator.filterDrop(Filter<T> f)
          make a new iterator, which is our elements that do not pass the filter
 ExtendedIterator<T> ExtendedIterator.filterKeep(Filter<T> f)
          return a new iterator containing only the elements of _this_ which pass the filter _f_.
 ExtendedIterator<T> LazyIterator.filterKeep(Filter<T> f)
           
 ExtendedIterator<T> NiceIterator.filterKeep(Filter<T> f)
          make a new iterator, which is our elements that pass the filter
 ExtendedIterator<T> Filter.filterKeep(java.util.Iterator<T> it)
           
<U> ExtendedIterator<U>
ExtendedIterator.mapWith(Map1<T,U> map1)
          return a new iterator where each element is the result of applying _map1_ to the corresponding element of _this_.
<U> ExtendedIterator<U>
LazyIterator.mapWith(Map1<T,U> map1)
           
<U> ExtendedIterator<U>
NiceIterator.mapWith(Map1<T,U> map1)
          make a new iterator which is the elementwise _map1_ of the base iterator.
 

Methods in com.hp.hpl.jena.util.iterator with parameters of type ExtendedIterator
static
<T> java.util.List<T>
NiceIterator.asList(ExtendedIterator<T> it)
          Answer a list of the elements from it, in order, consuming that iterator.
static
<T> java.util.Set<T>
NiceIterator.asSet(ExtendedIterator<T> it)
          Answer a list of the elements of it in order, consuming this iterator.
 

Constructors in com.hp.hpl.jena.util.iterator with parameters of type ExtendedIterator
MapFilterIterator(MapFilter<T,X> fl, ExtendedIterator<T> e)
          Creates a sub-Iterator.
 



Copyright ? 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 Hewlett-Packard Development Company, LP