Uses of Interface
org.openjena.atlas.iterator.Action

Packages that use Action
org.openjena.atlas.iterator   
 

Uses of Action in org.openjena.atlas.iterator
 

Classes in org.openjena.atlas.iterator that implement Action
 class ActionCount<T>
           
 class ActionNothing<T>
           
 class ActionPrint<T extends Printable>
           
 

Methods in org.openjena.atlas.iterator with parameters of type Action
 void Iter.apply(Action<T> action)
           
static
<T> void
Iter.apply(Iterable<? extends T> stream, Action<T> action)
           
static
<T> void
Iter.apply(Iterator<? extends T> stream, Action<T> action)
           
 Iter<T> Iter.operate(Action<T> action)
          Apply an action to everything in the stream, yielding a stream of the same items
static
<T> Iterator<T>
Iter.operate(Iterable<? extends T> stream, Action<T> converter)
          Apply an action to everything in stream, yielding a stream of the same items
static
<T> Iterator<T>
Iter.operate(Iterator<? extends T> stream, Action<T> action)
          Apply an action to everything in stream, yielding a stream of the same items
 



Licenced under the Apache License, Version 2.0