Skip navigation links
A B C D E F I L N O P R S T 

A

ArrayIterable<Payload> - Class in net.markenwerk.commons.iterables
An ArrayIterable is a ProtectedIterable that generates Iterators that iterate over a given payload array.
ArrayIterable(Payload...) - Constructor for class net.markenwerk.commons.iterables.ArrayIterable
Creates a new ArrayIterable.

B

BooleanArrayIterable - Class in net.markenwerk.commons.iterables
A BooleanArrayIterable is a ProtectedIterable that generates Iterators that iterate over a given boolean[].
BooleanArrayIterable(boolean...) - Constructor for class net.markenwerk.commons.iterables.BooleanArrayIterable
Creates a new BooleanArrayIterable.
ByteArrayIterable - Class in net.markenwerk.commons.iterables
A ByteArrayIterable is a ProtectedIterable that generates Iterators that iterate over a given byte[].
ByteArrayIterable(byte...) - Constructor for class net.markenwerk.commons.iterables.ByteArrayIterable
Creates a new ByteArrayIterable.

C

CharacterArrayIterable - Class in net.markenwerk.commons.iterables
A CharacterArrayIterable is a ProtectedIterable that generates Iterators that iterate over a given char[].
CharacterArrayIterable(char...) - Constructor for class net.markenwerk.commons.iterables.CharacterArrayIterable
Creates a new CharacterArrayIterable.
CombinedIterable<Payload> - Class in net.markenwerk.commons.iterables
A CombinedIterable is an Iterable that wraps around some given Iterables and combines them into a single Iterable by iterating over all given Iterables in the order they were given.
CombinedIterable(Iterable<? extends Payload>...) - Constructor for class net.markenwerk.commons.iterables.CombinedIterable
Creates a new CombinedIterable.
CombinedIterable(Iterable<? extends Iterable<? extends Payload>>) - Constructor for class net.markenwerk.commons.iterables.CombinedIterable
Creates a new CombinedIterable.
ConvertingIterable<From,To> - Class in net.markenwerk.commons.iterables
A ConvertingIterable is an Iterable that can be wrapped around a given Iterable and generates Iterators that converts all values with a given Converter.
ConvertingIterable(Iterable<? extends From>, Converter<? super From, ? extends To>) - Constructor for class net.markenwerk.commons.iterables.ConvertingIterable
Creates a new ConvertingIterable.
CountDownIterable - Class in net.markenwerk.commons.iterables
A CountDownIterable is a ProtectedIterable that generates Iterators that that yields all integer value between a given lower bound and a given upper bound.
CountDownIterable(int, int) - Constructor for class net.markenwerk.commons.iterables.CountDownIterable
Creates a new CountDownIterable.
CountUpIterable - Class in net.markenwerk.commons.iterables
A CountUpIterable is a ProtectedIterable that generates Iterators that that yields all integer value between a given lower bound and a given upper bound.
CountUpIterable(int, int) - Constructor for class net.markenwerk.commons.iterables.CountUpIterable
Creates a new CountUpIterable.

D

DoubleArrayIterable - Class in net.markenwerk.commons.iterables
A DoubleArrayIterable is a ProtectedIterable that generates Iterators that iterate over a given double[].
DoubleArrayIterable(double...) - Constructor for class net.markenwerk.commons.iterables.DoubleArrayIterable
Creates a new DoubleArrayIterable.

E

EmptyIterable<Payload> - Class in net.markenwerk.commons.iterables
An EmptyIterable is a ProtectedIterable that generates Iterators that that don't yield any values.
EmptyIterable() - Constructor for class net.markenwerk.commons.iterables.EmptyIterable
Creates a new EmptyIterable.
EnumerationIterable<Payload> - Class in net.markenwerk.commons.iterables
An EnumerationIterable is a ProtectedIterable that can be wrapped around a given Provider for Enumerations and generates Iterators that yield all values from a produced Enumeration.
EnumerationIterable(Provider<? extends Enumeration<? extends Payload>>) - Constructor for class net.markenwerk.commons.iterables.EnumerationIterable
Creates a new EnumerationIterable.

F

FilteredIterable<Payload> - Class in net.markenwerk.commons.iterables
A FilteredIterable is an Iterable that can be wrapped around a given Iterable and generates Iterators that filters out values according to a given Predicate.
FilteredIterable(Iterable<? extends Payload>, Predicate<? super Payload>) - Constructor for class net.markenwerk.commons.iterables.FilteredIterable
Creates a new FilteredIterable.
FilteredIterable(Iterable<? extends Payload>, Predicate<? super Payload>, boolean) - Constructor for class net.markenwerk.commons.iterables.FilteredIterable
Creates a new FilteredIterable.
FloatArrayIterable - Class in net.markenwerk.commons.iterables
A FloatArrayIterable is a ProtectedIterable that generates Iterators that iterate over a given float[].
FloatArrayIterable(float...) - Constructor for class net.markenwerk.commons.iterables.FloatArrayIterable
Creates a new FloatArrayIterable.

I

IndexedIterable<Payload> - Class in net.markenwerk.commons.iterables
An IndexedIterable is an Iterable that can be wrapped around a given Iterable and generates Iterators that yield every value yielded by an given Iterator generated by the given Iterable as an Entry whose key is the index of the yielded element.
IndexedIterable(Iterable<? extends Payload>) - Constructor for class net.markenwerk.commons.iterables.IndexedIterable
Creates a new IndexedIterable.
InfiniteIterable<Payload> - Class in net.markenwerk.commons.iterables
An InfiniteIterable is a ProtectedIterable that generates Iterators that iterate over a given NodeList.
InfiniteIterable(Provider<Payload>) - Constructor for class net.markenwerk.commons.iterables.InfiniteIterable
Creates a new InfiniteIterable.
InfixedIterable<Payload> - Class in net.markenwerk.commons.iterables
An InfixedIterable is an Iterable that can be wrapped around a given Iterable and generates Iterators that yield some given infix values between every value yielded by an Iterator that is generated by the given Iterable.
InfixedIterable(Iterable<? extends Payload>, Payload...) - Constructor for class net.markenwerk.commons.iterables.InfixedIterable
Creates a new InfixedIterable.
IntegerArrayIterable - Class in net.markenwerk.commons.iterables
An IntegerArrayIterable is a ProtectedIterable that generates Iterators that iterate over a given int[].
IntegerArrayIterable(int...) - Constructor for class net.markenwerk.commons.iterables.IntegerArrayIterable
Creates a new IntegerArrayIterable.
iterator() - Method in class net.markenwerk.commons.iterables.ArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.BooleanArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.ByteArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.CharacterArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.CombinedIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.ConvertingIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.CountDownIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.CountUpIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.DoubleArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.EmptyIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.EnumerationIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.FilteredIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.FloatArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.IndexedIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.InfiniteIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.InfixedIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.IntegerArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.LongArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.LookAheadIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.NodeListIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.NullFreeIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.NullSaveIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.ObjectIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.OptionalIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.PairIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.PrefixedIterable
 
iterator() - Method in interface net.markenwerk.commons.iterables.ProtectedIterable
Returns a ProtectedIterator.
iterator() - Method in class net.markenwerk.commons.iterables.ProtectingIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.RemoveHandlerIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.ShortArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.StringTokenizerIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.SuffixedIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.TripleIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.TupleIterable
 

L

LongArrayIterable - Class in net.markenwerk.commons.iterables
A LongArrayIterable is a ProtectedIterable that generates Iterators that iterate over a given long[].
LongArrayIterable(long...) - Constructor for class net.markenwerk.commons.iterables.LongArrayIterable
Creates a new LongArrayIterable.
LookAheadIterable<Payload> - Class in net.markenwerk.commons.iterables
A LookAheadIterable is a ProtectedIterable that can be wrapped around a given Iterator and generates Iterators that yield a LookAhead container that holds the current and the next payload value of an Iterator that is generated by the given Iterable.
LookAheadIterable(Iterable<? extends Payload>) - Constructor for class net.markenwerk.commons.iterables.LookAheadIterable
Creates a new LookAheadIterable.

N

net.markenwerk.commons.iterables - package net.markenwerk.commons.iterables
 
NodeListIterable - Class in net.markenwerk.commons.iterables
A NodeListIterable is a ProtectedIterable that generates Iterators that iterate over a given NodeList.
NodeListIterable(NodeList) - Constructor for class net.markenwerk.commons.iterables.NodeListIterable
Creates a new NodeListIterable.
NullFreeIterable<Payload> - Class in net.markenwerk.commons.iterables
A NullFreeIterable is an Iterable that can be wrapped around a given Iterable and generates Iterators that filters out null values.
NullFreeIterable(Iterable<? extends Payload>) - Constructor for class net.markenwerk.commons.iterables.NullFreeIterable
Creates a new NullFreeIterable.
NullSaveIterable<Payload> - Class in net.markenwerk.commons.iterables
A NullSaveIterable is an Iterable that can be wrapped around a given Iterable and generates Iterators that always behaves correctly, even if the given Iterable is null (by generating an EmptyIterator).
NullSaveIterable(Iterable<? extends Payload>) - Constructor for class net.markenwerk.commons.iterables.NullSaveIterable
Creates a new NullSaveIterable.

O

ObjectIterable<Payload> - Class in net.markenwerk.commons.iterables
An ObjectIterable is a ProtectedIterable that generates Iterators that iterate over a single payload object.
ObjectIterable(Payload) - Constructor for class net.markenwerk.commons.iterables.ObjectIterable
Creates a new ObjectIterable.
OptionalIterable<Payload> - Class in net.markenwerk.commons.iterables
An OptionalIterable is a ProtectedIterable that behaves like an ObjectIterable for a given payload object, or like an empty Iterable, if the given payload object is null.
OptionalIterable(Payload) - Constructor for class net.markenwerk.commons.iterables.OptionalIterable
Creates a new OptionalIterable.

P

PairIterable<Payload> - Class in net.markenwerk.commons.iterables
A PairIterable is a ProtectedIterable that generates Iterators that iterate over a given NodeList.
PairIterable(Pair<Payload>) - Constructor for class net.markenwerk.commons.iterables.PairIterable
Creates a new PairIterable.
PrefixedIterable<Payload> - Class in net.markenwerk.commons.iterables
A PrefixedIterable is an Iterable that can be wrapped around a given Iterable and generates Iterators that yield some given prefix values before every object yielded by an Iterator that is generated by the given Iterable.
PrefixedIterable(Iterable<? extends Payload>, Payload...) - Constructor for class net.markenwerk.commons.iterables.PrefixedIterable
Creates a new PrefixedIterable.
ProtectedIterable<Payload> - Interface in net.markenwerk.commons.iterables
A ProtectedIterable is an Iterable that guarantees that every call to Iterable.iterator() yields a ProtectedIterator.
ProtectingIterable<Payload> - Class in net.markenwerk.commons.iterables
A ProtectingIterable is a ProtectedIterable that can be wrapped around a given Iterable and generates ProtectedIterators.
ProtectingIterable(Iterable<Payload>) - Constructor for class net.markenwerk.commons.iterables.ProtectingIterable
Creates a new ProtectingIterable.

R

RemoveHandlerIterable<Payload> - Class in net.markenwerk.commons.iterables
A RemoveHandlerIterable is an Iterable that can be wrapped around a given Iterable and generates Iterators that filters out values according to a given Predicate.
RemoveHandlerIterable(Iterable<? extends Payload>, Handler<? super Payload>) - Constructor for class net.markenwerk.commons.iterables.RemoveHandlerIterable
Creates a new RemoveHandlerIterable.

S

ShortArrayIterable - Class in net.markenwerk.commons.iterables
A ShortArrayIterable is a ProtectedIterable that generates Iterators that iterate over a given short[].
ShortArrayIterable(short...) - Constructor for class net.markenwerk.commons.iterables.ShortArrayIterable
Creates a new ShortArrayIterable.
StringTokenizerIterable - Class in net.markenwerk.commons.iterables
A StringTokenizerIterable is a ProtectedIterable that can be wrapped around a given Producer for StringTokenizers and generates Iterators that yield all strings from a produced StringTokenizer.
StringTokenizerIterable(Provider<StringTokenizer>) - Constructor for class net.markenwerk.commons.iterables.StringTokenizerIterable
SuffixedIterable<Payload> - Class in net.markenwerk.commons.iterables
A SuffixedIterable is an Iterable that can be wrapped around a given Iterable and generates Iterators that yield some given suffix values after every object yielded by an Iterator that is generated by the given Iterable.
SuffixedIterable(Iterable<? extends Payload>, Payload...) - Constructor for class net.markenwerk.commons.iterables.SuffixedIterable
Creates a new SuffixedIterable.

T

TripleIterable<Payload> - Class in net.markenwerk.commons.iterables
A TripleIterable is a ProtectedIterable that generates Iterators that iterate over a given NodeList.
TripleIterable(Triple<? extends Payload, ? extends Payload, ? extends Payload>) - Constructor for class net.markenwerk.commons.iterables.TripleIterable
Creates a new TripleIterable.
TupleIterable<Payload> - Class in net.markenwerk.commons.iterables
A TupleIterable is a ProtectedIterable that generates Iterators that iterate over a given NodeList.
TupleIterable(Tuple<? extends Payload, ? extends Payload>) - Constructor for class net.markenwerk.commons.iterables.TupleIterable
Creates a new TupleIterable.
A B C D E F I L N O P R S T 
Skip navigation links

Copyright © 2015–2016 Markenwerk – Gesellschaft für markenbildende Maßnahmen mbH. All rights reserved.