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

A

ArrayIterator<Payload> - Class in net.markenwerk.commons.iterators
An ArrayIterator is a Iterator that iterates over a given payload array.
ArrayIterator(Payload[]) - Constructor for class net.markenwerk.commons.iterators.ArrayIterator
Creates a new ArrayIterator that iterates over the given payload array.
ArrayIterator(Payload[], Payload) - Constructor for class net.markenwerk.commons.iterators.ArrayIterator
Creates a new ArrayIterator that iterates over the given payload array.

B

BooleanArrayIterator - Class in net.markenwerk.commons.iterators
A BooleanArrayIterator is a Iterator that iterates over a given boolean[].
BooleanArrayIterator(boolean[]) - Constructor for class net.markenwerk.commons.iterators.BooleanArrayIterator
Creates a new BooleanArrayIterator that iterates over the given boolean[].
BooleanArrayIterator(boolean[], boolean) - Constructor for class net.markenwerk.commons.iterators.BooleanArrayIterator
Creates a new BooleanArrayIterator that iterates over the given boolean[].
ByteArrayIterator - Class in net.markenwerk.commons.iterators
A ByteArrayIterator is an Iterator that iterates over a given byte[].
ByteArrayIterator(byte[]) - Constructor for class net.markenwerk.commons.iterators.ByteArrayIterator
Creates a new ByteArrayIterator that iterates over the given byte[].
ByteArrayIterator(byte[], byte) - Constructor for class net.markenwerk.commons.iterators.ByteArrayIterator
Creates a new ByteArrayIterator that iterates over the given byte[].

C

CharacterArrayIterator - Class in net.markenwerk.commons.iterators
A CharacterArrayIterator is an Iterator that iterates over a given char[].
CharacterArrayIterator(char[]) - Constructor for class net.markenwerk.commons.iterators.CharacterArrayIterator
Creates a new CharacterArrayIterator that iterates over the given char[].
CharacterArrayIterator(char[], char) - Constructor for class net.markenwerk.commons.iterators.CharacterArrayIterator
Creates a new CharacterArrayIterator that iterates over the given char[].
CombinedIterator<Payload> - Class in net.markenwerk.commons.iterators
A CombinedIterator is an Iterator that wraps arround some given Iterators and combines them into a single Iterator by iterating over all given Iterators in the order they were given.
CombinedIterator(Iterator<? extends Payload>...) - Constructor for class net.markenwerk.commons.iterators.CombinedIterator
Creates a new CombinedIterator from the given sequence Iterators.
CombinedIterator(Iterable<? extends Iterator<? extends Payload>>) - Constructor for class net.markenwerk.commons.iterators.CombinedIterator
Creates a new CombinedIterator from the given Iterable of link Iterator Iterators}.
CombinedIterator(Iterator<? extends Iterator<? extends Payload>>) - Constructor for class net.markenwerk.commons.iterators.CombinedIterator
Creates a new CombinedIterator from the given Iteratorsof link Iterator Iterators}.
ConvertingIterator<From,To> - Class in net.markenwerk.commons.iterators
A ConvertingIterator is an Iterator that can be wrapped around a given Iterator and converts all values with a given Converter.
ConvertingIterator(Iterator<? extends From>, Converter<From, To>) - Constructor for class net.markenwerk.commons.iterators.ConvertingIterator
Creates a new ConvertingIterator from the given Iterator and the given Converter.
CountDownIterator - Class in net.markenwerk.commons.iterators
A CountDownIterator is an Iterator that yields all integer value between a given upper value and a given lower bound.
CountDownIterator(int, int) - Constructor for class net.markenwerk.commons.iterators.CountDownIterator
Creates a new CountDownIterator from the given upper and lower bound.
CountUpIterator - Class in net.markenwerk.commons.iterators
A CountUpIterator is an Iterator that yields all integer value between a given lower value and a given upper bound.
CountUpIterator(int, int) - Constructor for class net.markenwerk.commons.iterators.CountUpIterator
Creates a new CountUpIterator from the given lower and upper bound.

D

DoubleArrayIterator - Class in net.markenwerk.commons.iterators
A DoubleArrayIterator is an Iterator that iterates over a given double[].
DoubleArrayIterator(double[]) - Constructor for class net.markenwerk.commons.iterators.DoubleArrayIterator
Creates a new DoubleArrayIterator that iterates over the given double[].
DoubleArrayIterator(double[], double) - Constructor for class net.markenwerk.commons.iterators.DoubleArrayIterator
Creates a new DoubleArrayIterator that iterates over the given double[].

E

EmptyIterator<Payload> - Class in net.markenwerk.commons.iterators
An EmptyIterator is an Iterator that doesn't yield any values.
EmptyIterator() - Constructor for class net.markenwerk.commons.iterators.EmptyIterator
 
EnumerationIterator<Payload> - Class in net.markenwerk.commons.iterators
A EnumerationIterator is an Iterator that can be wrapped around a given Enumeration and yields all values yielded by the given Enumeration.
EnumerationIterator(Enumeration<Payload>) - Constructor for class net.markenwerk.commons.iterators.EnumerationIterator
Creates a new EnumerationIterator from the given Enumeration.

F

FilteringIterator<Payload> - Class in net.markenwerk.commons.iterators
A FilteringIterator is an Iterator that can be wrapped around a given Iterator and filters out values according to a given Predicate.
FilteringIterator(Iterator<? extends Payload>, Predicate<Payload>) - Constructor for class net.markenwerk.commons.iterators.FilteringIterator
Creates a new FilteringIterator from the given Iterator and the given Predicate.
FilteringIterator(Iterator<? extends Payload>, Predicate<Payload>, boolean) - Constructor for class net.markenwerk.commons.iterators.FilteringIterator
Creates a new FilteringIterator from the given Iterator and the given Predicate.
FloatArrayIterator - Class in net.markenwerk.commons.iterators
A FloatArrayIterator is an Iterator that iterates over a given float[].
FloatArrayIterator(float[]) - Constructor for class net.markenwerk.commons.iterators.FloatArrayIterator
Creates a new FloatArrayIterator that iterates over the given float[].
FloatArrayIterator(float[], float) - Constructor for class net.markenwerk.commons.iterators.FloatArrayIterator
Creates a new FloatArrayIterator that iterates over the given float[].

G

get() - Method in interface net.markenwerk.commons.iterators.LookAhead
Returns the current payload object of an LookAheadIterator.
getNext() - Method in interface net.markenwerk.commons.iterators.LookAhead
Returns the next payload object of an LookAheadIterator.

H

hasNext() - Method in class net.markenwerk.commons.iterators.ArrayIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.BooleanArrayIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.ByteArrayIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.CharacterArrayIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.CombinedIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.ConvertingIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.CountDownIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.CountUpIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.DoubleArrayIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.EmptyIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.EnumerationIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.FilteringIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.FloatArrayIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.InfixedIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.IntegerArrayIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.LongArrayIterator
 
hasNext() - Method in interface net.markenwerk.commons.iterators.LookAhead
Returns whether this LookAhead has a next payload object.
hasNext() - Method in class net.markenwerk.commons.iterators.LookAheadIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.NullFreeIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.NullSaveIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.ObjectIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.OptionalIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.ProtectingIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.ShortArrayIterator
 
hasNext() - Method in class net.markenwerk.commons.iterators.StringTokenizerIterator
 

I

InfixedIterator<Payload> - Class in net.markenwerk.commons.iterators
An InfixedIterator is an Iterator that can be wrapped around a given Iterator and yields a given infix between every object yielded by the given Iterator.
InfixedIterator(Iterator<? extends Payload>, Payload) - Constructor for class net.markenwerk.commons.iterators.InfixedIterator
Creates a new InfixedIterator from the given Iterator and the given Predicate.
IntegerArrayIterator - Class in net.markenwerk.commons.iterators
An IntegerArrayIterator is an Iterator that iterates over a given int[].
IntegerArrayIterator(int[]) - Constructor for class net.markenwerk.commons.iterators.IntegerArrayIterator
Creates a new IntegerArrayIterator that iterates over the given int[].
IntegerArrayIterator(int[], int) - Constructor for class net.markenwerk.commons.iterators.IntegerArrayIterator
Creates a new IntegerArrayIterator that iterates over the given int[].
isLast() - Method in interface net.markenwerk.commons.iterators.LookAhead
Returns whether this LookAhead has a no next payload object.

L

LongArrayIterator - Class in net.markenwerk.commons.iterators
A LongArrayIterator is an Iterator that iterates over a given long[].
LongArrayIterator(long[]) - Constructor for class net.markenwerk.commons.iterators.LongArrayIterator
Creates a new LongArrayIterator that iterates over the given long[].
LongArrayIterator(long[], long) - Constructor for class net.markenwerk.commons.iterators.LongArrayIterator
Creates a new LongArrayIterator that iterates over the given long[].
LookAhead<Payload> - Interface in net.markenwerk.commons.iterators
A LookAhead is a simple container that holds the current and the next payload object of an LookAheadIterator.
LookAheadIterator<Payload> - Class in net.markenwerk.commons.iterators
A LookAheadIterator is an Iterator that can be wrapped around a given Iterator and yields a LookAhead container that holds the current and the next payload value of the given Iterator.
LookAheadIterator(Iterator<? extends Payload>) - Constructor for class net.markenwerk.commons.iterators.LookAheadIterator
Creates a new LookAheadIterator from the given Iterator and the given Predicate.

N

net.markenwerk.commons.iterators - package net.markenwerk.commons.iterators
 
next() - Method in class net.markenwerk.commons.iterators.ArrayIterator
 
next() - Method in class net.markenwerk.commons.iterators.BooleanArrayIterator
 
next() - Method in class net.markenwerk.commons.iterators.ByteArrayIterator
 
next() - Method in class net.markenwerk.commons.iterators.CharacterArrayIterator
 
next() - Method in class net.markenwerk.commons.iterators.CombinedIterator
 
next() - Method in class net.markenwerk.commons.iterators.ConvertingIterator
 
next() - Method in class net.markenwerk.commons.iterators.CountDownIterator
 
next() - Method in class net.markenwerk.commons.iterators.CountUpIterator
 
next() - Method in class net.markenwerk.commons.iterators.DoubleArrayIterator
 
next() - Method in class net.markenwerk.commons.iterators.EmptyIterator
 
next() - Method in class net.markenwerk.commons.iterators.EnumerationIterator
 
next() - Method in class net.markenwerk.commons.iterators.FilteringIterator
 
next() - Method in class net.markenwerk.commons.iterators.FloatArrayIterator
 
next() - Method in class net.markenwerk.commons.iterators.InfixedIterator
 
next() - Method in class net.markenwerk.commons.iterators.IntegerArrayIterator
 
next() - Method in class net.markenwerk.commons.iterators.LongArrayIterator
 
next() - Method in class net.markenwerk.commons.iterators.LookAheadIterator
 
next() - Method in class net.markenwerk.commons.iterators.NullFreeIterator
 
next() - Method in class net.markenwerk.commons.iterators.NullSaveIterator
 
next() - Method in class net.markenwerk.commons.iterators.ObjectIterator
 
next() - Method in class net.markenwerk.commons.iterators.OptionalIterator
 
next() - Method in class net.markenwerk.commons.iterators.ProtectingIterator
 
next() - Method in class net.markenwerk.commons.iterators.ShortArrayIterator
 
next() - Method in class net.markenwerk.commons.iterators.StringTokenizerIterator
 
NullFreeIterator<Payload> - Class in net.markenwerk.commons.iterators
A NullFreeIterator is an Iterator that can be wrapped around a given Iterator and filters out null values.
NullFreeIterator(Iterator<Payload>) - Constructor for class net.markenwerk.commons.iterators.NullFreeIterator
Creates a new NullFreeIterator from the given Iterator.
NullSaveIterator<Payload> - Class in net.markenwerk.commons.iterators
A NullSaveIterator is an Iterator that can be wrapped around a given Iterator and always behaves correctly, even if the given Iterator is null (by behaving like an EmptyIterator).
NullSaveIterator(Iterable<Payload>) - Constructor for class net.markenwerk.commons.iterators.NullSaveIterator
Creates a new NullSaveIterator from the given Iterable.
NullSaveIterator(Iterator<Payload>) - Constructor for class net.markenwerk.commons.iterators.NullSaveIterator
Creates a new NullSaveIterator from the given Iterator.

O

ObjectIterator<Payload> - Class in net.markenwerk.commons.iterators
An ObjectIterator is a Iterator that iterates over a single payload object.
ObjectIterator(Payload) - Constructor for class net.markenwerk.commons.iterators.ObjectIterator
Creates a new ObjectIterator that iterates over the given payload object.
OptionalIterator<Payload> - Class in net.markenwerk.commons.iterators
An OptionalIterator is a Iterator that behaves like an ObjectIterator for a given payload object, or like an empty Iterator, if the given payload object is null.
OptionalIterator(Payload) - Constructor for class net.markenwerk.commons.iterators.OptionalIterator
Creates a new OptionalIterator that iterates over the given payload object.

P

ProtectedIterator<Payload> - Interface in net.markenwerk.commons.iterators
A ProtectedIterator is an Iterator that guarantees that every call to Iterator.remove() throws an UnsupportedOperationException and doesn't alter the underlying data.
ProtectingIterator<Payload> - Class in net.markenwerk.commons.iterators
An ProtectingIterator is an ProtectedIterator that can be wrapped around a given Iterator and guarantees that every call to Iterator.remove() throws an UnsupportedOperationException and doesn't alter the underlying Iterator.
ProtectingIterator(Iterator<? extends Payload>) - Constructor for class net.markenwerk.commons.iterators.ProtectingIterator
Creates a new ProtectingIterator from the given Iterator and the given Predicate.

R

remove() - Method in class net.markenwerk.commons.iterators.ArrayIterator
 
remove() - Method in class net.markenwerk.commons.iterators.BooleanArrayIterator
 
remove() - Method in class net.markenwerk.commons.iterators.ByteArrayIterator
 
remove() - Method in class net.markenwerk.commons.iterators.CharacterArrayIterator
 
remove() - Method in class net.markenwerk.commons.iterators.CombinedIterator
 
remove() - Method in class net.markenwerk.commons.iterators.ConvertingIterator
 
remove() - Method in class net.markenwerk.commons.iterators.CountDownIterator
 
remove() - Method in class net.markenwerk.commons.iterators.CountUpIterator
 
remove() - Method in class net.markenwerk.commons.iterators.DoubleArrayIterator
 
remove() - Method in class net.markenwerk.commons.iterators.EmptyIterator
 
remove() - Method in class net.markenwerk.commons.iterators.EnumerationIterator
 
remove() - Method in class net.markenwerk.commons.iterators.FilteringIterator
 
remove() - Method in class net.markenwerk.commons.iterators.FloatArrayIterator
 
remove() - Method in class net.markenwerk.commons.iterators.InfixedIterator
 
remove() - Method in class net.markenwerk.commons.iterators.IntegerArrayIterator
 
remove() - Method in class net.markenwerk.commons.iterators.LongArrayIterator
 
remove() - Method in class net.markenwerk.commons.iterators.LookAheadIterator
 
remove() - Method in class net.markenwerk.commons.iterators.NullFreeIterator
 
remove() - Method in class net.markenwerk.commons.iterators.NullSaveIterator
 
remove() - Method in class net.markenwerk.commons.iterators.ObjectIterator
 
remove() - Method in class net.markenwerk.commons.iterators.OptionalIterator
 
remove() - Method in class net.markenwerk.commons.iterators.ProtectingIterator
 
remove() - Method in class net.markenwerk.commons.iterators.ShortArrayIterator
 
remove() - Method in class net.markenwerk.commons.iterators.StringTokenizerIterator
 

S

ShortArrayIterator - Class in net.markenwerk.commons.iterators
A ShortArrayIterator is an Iterator that iterates over a given short[].
ShortArrayIterator(short[]) - Constructor for class net.markenwerk.commons.iterators.ShortArrayIterator
Creates a new ShortArrayIterator that iterates over the given short[].
ShortArrayIterator(short[], short) - Constructor for class net.markenwerk.commons.iterators.ShortArrayIterator
Creates a new ShortArrayIterator that iterates over the given short[].
StringTokenizerIterator - Class in net.markenwerk.commons.iterators
A StringTokenizerIterator is an Iterator that can be wrapped around a given StringTokenizer and yields all tokens yielded by the given StringTokenizer.
StringTokenizerIterator(StringTokenizer) - Constructor for class net.markenwerk.commons.iterators.StringTokenizerIterator
Creates a new StringTokenizerIterator from the given StringTokenizer.
A B C D E F G H I L N O P R S 
Skip navigation links

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