Uses of Class
org.apache.jena.atlas.iterator.Iter

Packages that use Iter
org.apache.jena.atlas.iterator   
org.apache.jena.riot.other   
 

Uses of Iter in org.apache.jena.atlas.iterator
 

Methods in org.apache.jena.atlas.iterator that return Iter
 Iter<T> Iter.append(Iterator<T> iter)
           
static
<T> Iter<T>
Iter.concat(Iter<T> iter1, Iter<T> iter2)
           
 Iter<T> Iter.distinct()
           
 Iter<T> Iter.distinctAdjacent()
           
 Iter<T> Iter.filter(Filter<T> filter)
           
static
<T> Iter<T>
Iter.iter(Collection<T> collection)
           
static
<T> Iter<T>
Iter.iter(Iter<T> iter)
           
static
<T> Iter<T>
Iter.iter(Iterable<T> iterable)
           
static
<T> Iter<T>
Iter.iter(Iterator<T> iterator)
           
static
<T> Iter<T>
Iter.iterSingleton(T x)
           
<R> Iter<R>
Iter.map(Transform<T,R> converter)
           
static
<T> Iter<T>
Iter.nullIter()
           
 Iter<T> Iter.operate(Action<T> action)
          Apply an action to everything in the stream, yielding a stream of the same items
 Iter<T> Iter.removeNulls()
           
static
<T> Iter<T>
Iter.singletonIter(T item)
           
 Iter<T> Iter.take(int N)
          Return an Iter that yields at most the first N items
 

Methods in org.apache.jena.atlas.iterator with parameters of type Iter
static
<T> String
Iter.asString(Iter<T> stream)
           
static
<T> String
Iter.asString(Iter<T> stream, AccString<T> formatter)
           
static
<T> String
Iter.asString(Iter<T> stream, String sep)
           
static
<T> Iter<T>
Iter.concat(Iter<T> iter1, Iter<T> iter2)
           
static
<T> Iter<T>
Iter.concat(Iter<T> iter1, Iter<T> iter2)
           
static
<T> Iter<T>
Iter.iter(Iter<T> iter)
           
 

Uses of Iter in org.apache.jena.riot.other
 

Methods in org.apache.jena.riot.other that return Iter
static Iter<Triple> GLib.quads2triples(Iterator<Quad> iter)
          Project quads to triples
 



Licenced under the Apache License, Version 2.0