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

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 for the given payload array.

B

BooleanArrayIterable - Class in net.markenwerk.commons.iterables
An 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 for the given boolean[].
ByteArrayIterable - Class in net.markenwerk.commons.iterables
An 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 for the given byte[].

C

CharacterArrayIterable - Class in net.markenwerk.commons.iterables
An 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 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 ProtectedIterable 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 ProtectedIterable 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 ProtectedIterable 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[].

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
 
EnumerationIterable<Payload> - Class in net.markenwerk.commons.iterables
An EnumerationIterable is a ProtectedIterable 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

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<Payload>) - Constructor for class net.markenwerk.commons.iterables.FilteredIterable
Creates a new FilteredIterable from the given Iterable.
FilteredIterable(Iterable<? extends Payload>, Predicate<Payload>, boolean) - Constructor for class net.markenwerk.commons.iterables.FilteredIterable
Creates a new FilteredIterable from the given Iterable.
FloatArrayIterable - Class in net.markenwerk.commons.iterables
An 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 for the given float[].

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 from the given Iterable.
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 from the given Iterable.
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 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.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.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.PrefixedIterable
 
iterator() - Method in interface net.markenwerk.commons.iterables.ProtectedIterable
 
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
 

L

LongArrayIterable - Class in net.markenwerk.commons.iterables
An 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 for the given long[].
LookAheadIterable<Payload> - Class in net.markenwerk.commons.iterables
A LookAheadIterable is an 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 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 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 for the given payload object.
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 for the given payload object.

P

PrefixedIterable<Payload> - Class in net.markenwerk.commons.iterables
An 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 from the given Iterable.
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
An 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 from the given Iterable.

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<Payload>) - Constructor for class net.markenwerk.commons.iterables.RemoveHandlerIterable
Creates a new RemoveHandlerIterable from the given Iterable.

S

ShortArrayIterable - Class in net.markenwerk.commons.iterables
An 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 for the given short[].
StringTokenizerIterable - Class in net.markenwerk.commons.iterables
An 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(Producer<StringTokenizer>) - Constructor for class net.markenwerk.commons.iterables.StringTokenizerIterable
Creates a new StringTokenizerIterable from the given Producer for StringTokenizers.
SuffixedIterable<Payload> - Class in net.markenwerk.commons.iterables
An 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 from the given Iterable.
A B C D E F I L N O P R S 
Skip navigation links

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