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

A

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

B

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

C

CharacterArrayIterable - Class in net.markenwerk.commons.iterables
An CharacterArrayIterable is a Iterable that generates Iterators that iterate over a given char[].
CharacterArrayIterable(char[]) - Constructor for class net.markenwerk.commons.iterables.CharacterArrayIterable
Creates a new CharacterArrayIterable for the given char[] .
CharacterArrayIterable(char[], char) - Constructor for class net.markenwerk.commons.iterables.CharacterArrayIterable
Creates a new CharacterArrayIterable for the given char[] .
CombinedIterable<Payload> - Class in net.markenwerk.commons.iterables
An CombinedIterable is a Iterable that wraps arround 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 from the given sequence of Iterables.
CombinedIterable(Iterable<? extends Iterable<? extends Payload>>) - Constructor for class net.markenwerk.commons.iterables.CombinedIterable
Creates a new CombinedIterable from the given Iterable of Iterables.
ConvertingIterable<From,To> - Class in net.markenwerk.commons.iterables
An ConvertingIterable is a Iterable that can be wrapped around a given Iterable and generates Iterators that converts all values with a given Converter.
ConvertingIterable(Iterable<From>, Converter<From, To>) - Constructor for class net.markenwerk.commons.iterables.ConvertingIterable
Creates a new ConvertingIterable from the given Iterable.
CountDownIterable - Class in net.markenwerk.commons.iterables
An CountDownIterable is a Iterable that generates Iterators that that yields all integer value between a given lower value and a given upper bound.
CountDownIterable(int, int) - Constructor for class net.markenwerk.commons.iterables.CountDownIterable
Creates a new CountDownIterable from the given upper and lower bound.
CountUpIterable - Class in net.markenwerk.commons.iterables
An CountUpIterable is a Iterable that generates Iterators that that yields all integer value between a given lower value and a given upper bound.
CountUpIterable(int, int) - Constructor for class net.markenwerk.commons.iterables.CountUpIterable
Creates a new CountUpIterable from the given lower and upper bound.

D

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

E

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

F

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

I

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 a given infix between every object 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 from the given Iterable.
IntegerArrayIterable - Class in net.markenwerk.commons.iterables
An IntegerArrayIterable is a Iterable that generates Iterators that iterate over a given int[].
IntegerArrayIterable(int[]) - Constructor for class net.markenwerk.commons.iterables.IntegerArrayIterable
Creates a new IntegerArrayIterable for the given int[].
IntegerArrayIterable(int[], int) - Constructor for class net.markenwerk.commons.iterables.IntegerArrayIterable
Creates a new IntegerArrayIterable for the given int[].
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.FilteringIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.FloatArrayIterable
 
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.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.ShortArrayIterable
 
iterator() - Method in class net.markenwerk.commons.iterables.StringTokenizerIterable
 

L

LongArrayIterable - Class in net.markenwerk.commons.iterables
An LongArrayIterable is a Iterable that generates Iterators that iterate over a given long[].
LongArrayIterable(long[]) - Constructor for class net.markenwerk.commons.iterables.LongArrayIterable
Creates a new LongArrayIterable for the given long[].
LongArrayIterable(long[], long) - Constructor for class net.markenwerk.commons.iterables.LongArrayIterable
Creates a new LongArrayIterable for the given long[].
LookAheadIterable<Payload> - Class in net.markenwerk.commons.iterables
A LookAheadIterable is an Iterable 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 from the given Iterable.

N

net.markenwerk.commons.iterables - package net.markenwerk.commons.iterables
 
NullFreeIterable<Payload> - Class in net.markenwerk.commons.iterables
An NullFreeIterable is a Iterable that can be wrapped around a given Iterable and generates Iterators that filters out null values.
NullFreeIterable(Iterable<Payload>) - Constructor for class net.markenwerk.commons.iterables.NullFreeIterable
Creates a new NullFreeIterable from the given Iterable.
NullSaveIterable<Payload> - Class in net.markenwerk.commons.iterables
An NullSaveIterable is a 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<Payload>) - Constructor for class net.markenwerk.commons.iterables.NullSaveIterable
Creates a new NullSaveIterable from the given Iterable.

O

ObjectIterable<Payload> - Class in net.markenwerk.commons.iterables
An ObjectIterable is a Iterable that generates Iterators that iterate over a single payload object.
ObjectIterable(Payload) - Constructor for class net.markenwerk.commons.iterables.ObjectIterable
Creates a new ObjectIterable for the given payload object.
OptionalIterable<Payload> - Class in net.markenwerk.commons.iterables
An OptionalIterable is a Iterable 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 for the given payload object.

S

ShortArrayIterable - Class in net.markenwerk.commons.iterables
An ShortArrayIterable is a Iterable that generates Iterators that iterate over a given short[].
ShortArrayIterable(short[]) - Constructor for class net.markenwerk.commons.iterables.ShortArrayIterable
Creates a new ShortArrayIterable for the given short[].
ShortArrayIterable(short[], short) - Constructor for class net.markenwerk.commons.iterables.ShortArrayIterable
Creates a new ShortArrayIterable for the given short[].
StringTokenizerIterable - Class in net.markenwerk.commons.iterables
An StringTokenizerIterable is a Iterable that can be wrapped around a given Producer for StringTokenizers and generates Iterators that yield all strings from a produced StringTokenizer.
StringTokenizerIterable(Producer<StringTokenizer>) - Constructor for class net.markenwerk.commons.iterables.StringTokenizerIterable
Creates a new StringTokenizerIterable from the given Producer for StringTokenizers.
A B C D E F I L N O S 
Skip navigation links

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