- SerialIterableIterator<E> - Class in org.dmfs.iterators
-
- SerialIterableIterator(Iterator<Iterable<E>>) - Constructor for class org.dmfs.iterators.SerialIterableIterator
-
Deprecated.
- SerialIterator<E> - Class in org.dmfs.iterators
-
- SerialIterator(Iterator<E>...) - Constructor for class org.dmfs.iterators.SerialIterator
-
Deprecated.
- SerialIteratorIterator<E> - Class in org.dmfs.iterators
-
- SerialIteratorIterator(Iterator<Iterator<E>>) - Constructor for class org.dmfs.iterators.SerialIteratorIterator
-
Deprecated.
- Serialized<E> - Class in org.dmfs.iterators.decorators
-
An Iterator that serializes the results of other Iterators.
- Serialized(Iterator<E>...) - Constructor for class org.dmfs.iterators.decorators.Serialized
-
Constructor of an Iterator that serializes the elements of other Iterators.
- Serialized(Iterator<Iterator<E>>) - Constructor for class org.dmfs.iterators.decorators.Serialized
-
Constructor of an Iterator that serializes the elements of the Iterators iterated by the given
Iterator.
- SingletonIterator<E> - Class in org.dmfs.iterators
-
An iterator to iterate a single value.
- SingletonIterator(E) - Constructor for class org.dmfs.iterators.SingletonIterator
-
Creates an Iterator that iterates (only) the given value.
- size() - Method in class org.dmfs.iterators.utils.SlimSet
-
- Skip<E> - Class in org.dmfs.iterators.filters
-
A
Filter that fails for a specific number of elements and evaluates to
true for all following
elements.
- Skip(int) - Constructor for class org.dmfs.iterators.filters.Skip
-
- SlimSet<E> - Class in org.dmfs.iterators.utils
-
An open addressing Set implementation.
- SlimSet() - Constructor for class org.dmfs.iterators.utils.SlimSet
-
Default constructor.
- SlimSet(int) - Constructor for class org.dmfs.iterators.utils.SlimSet
-
Constructor to create a set that can take at least the given number of elements before it needs to be rehashed.
- SlimSet(int, float) - Constructor for class org.dmfs.iterators.utils.SlimSet
-
Constructor to create a set that can take at least the given number of elements before it needs to be rehashed.
- SlimSet(Collection<E>) - Constructor for class org.dmfs.iterators.utils.SlimSet
-
Creates a set from the elements of another Collection.
- SlimSet(E[]) - Constructor for class org.dmfs.iterators.utils.SlimSet
-
Creates a set from the values in an array.
- Split - Class in org.dmfs.iterables
-
An Iterable which iterates the elements of a CharSequence of a comma (or other character) separated value
list.
- Split(CharSequence, char) - Constructor for class org.dmfs.iterables.Split
-
Creates an Iterable that returns Iterators for all elements of the given CharSequence which are
separated by the given separator.
- Split - Class in org.dmfs.iterators
-
An Iterator that iterates the elements of a CharSequence of a comma (or other character) separated value list
.
- Split(CharSequence, char) - Constructor for class org.dmfs.iterators.Split
-
Creates an Iterator that iterates all segments of the given CharSequence which are separated by the given
separator.