Uses of Class
org.saager.enumerator.Enumerator

Uses of Enumerator in org.saager.enumerator
 

Subclasses of Enumerator in org.saager.enumerator
 class LiveEnumerator<T>
          Extension of Enumerator that tries to create modifiable Wrapper As List and Set are Iterable, an Enumerator can be used on them, but update-calls will not work.
 

Fields in org.saager.enumerator declared as Enumerator
private  Enumerator<T> Parallel.first
           
private  Enumerator<U> Parallel.second
           
 

Methods in org.saager.enumerator that return Enumerator
 Enumerator<T> Enumerator.also(Predicate<? super T> predicate)
          Also returns results from this Predicate
 Enumerator<T> Enumerator.append(Enumerator<? extends T>... tail)
          append one or more Enumerators to this.
 Enumerator<T> Enumerator.either(Predicate<? super T> predicate)
          XOR on Predicates
 Enumerator<T> Enumerator.invert()
          Complement of predicated set
 Enumerator<T> Enumerator.only(Predicate<? super T> predicate)
          Restricts results to object matching this Predicate
<S extends T>
Enumerator<S>
Enumerator.specialize(java.lang.Class<S> clazz)
          Create an Enumerator that returns only element of this sub-class.
 

Methods in org.saager.enumerator with parameters of type Enumerator
 Enumerator<T> Enumerator.append(Enumerator<? extends T>... tail)
          append one or more Enumerators to this.
 

Constructors in org.saager.enumerator with parameters of type Enumerator
Parallel(Enumerator<T> t, Enumerator<U> u)
           
Parallel(Enumerator<T> t, Enumerator<U> u)