Example usage for Java java.util Spliterators fields, constructors, methods, implement or subclass
The text is from its open source code.
Spliterator | emptySpliterator() Creates an empty Spliterator The empty spliterator reports Spliterator#SIZED and Spliterator#SUBSIZED . |
Iterator | iterator(Spliterator extends T> spliterator) Creates an Iterator from a Spliterator . |
PrimitiveIterator.OfInt | iterator(Spliterator.OfInt spliterator) Creates an PrimitiveIterator.OfInt from a Spliterator.OfInt . |
PrimitiveIterator.OfLong | iterator(Spliterator.OfLong spliterator) Creates an PrimitiveIterator.OfLong from a Spliterator.OfLong . |
PrimitiveIterator.OfDouble | iterator(Spliterator.OfDouble spliterator) Creates an PrimitiveIterator.OfDouble from a Spliterator.OfDouble . |
Spliterator | spliterator(Iterator extends T> iterator, long size, int characteristics) Creates a Spliterator using a given Iterator as the source of elements, and with a given initially reported size. |
Spliterator.OfInt | spliterator(PrimitiveIterator.OfInt iterator, long size, int characteristics) Creates a Spliterator.OfInt using a given IntStream.IntIterator as the source of elements, and with a given initially reported size. |
Spliterator.OfLong | spliterator(PrimitiveIterator.OfLong iterator, long size, int characteristics) Creates a Spliterator.OfLong using a given LongStream.LongIterator as the source of elements, and with a given initially reported size. |
Spliterator.OfDouble | spliterator(PrimitiveIterator.OfDouble iterator, long size, int characteristics) Creates a Spliterator.OfDouble using a given DoubleStream.DoubleIterator as the source of elements, and with a given initially reported size. |
Spliterator | spliterator(Object[] array, int additionalCharacteristics) Creates a Spliterator covering the elements of a given array, using a customized set of spliterator characteristics. |
Spliterator.OfInt | spliterator(int[] array, int additionalCharacteristics) Creates a Spliterator.OfInt covering the elements of a given array, using a customized set of spliterator characteristics. |
Spliterator.OfLong | spliterator(long[] array, int additionalCharacteristics) Creates a Spliterator.OfLong covering the elements of a given array, using a customized set of spliterator characteristics. |
Spliterator.OfDouble | spliterator(double[] array, int additionalCharacteristics) Creates a Spliterator.OfDouble covering the elements of a given array, using a customized set of spliterator characteristics. |
Spliterator | spliterator(Collection extends T> c, int characteristics) Creates a Spliterator using the given collection's java.util.Collection#iterator() as the source of elements, and reporting its java.util.Collection#size() as its initial size. |
Spliterator | spliteratorUnknownSize(Iterator extends T> iterator, int characteristics) Creates a Spliterator using a given Iterator as the source of elements, with no initial size estimate. |
Spliterator.OfInt | spliteratorUnknownSize(PrimitiveIterator.OfInt iterator, int characteristics) Creates a Spliterator.OfInt using a given IntStream.IntIterator as the source of elements, with no initial size estimate. |
Spliterator.OfLong | spliteratorUnknownSize(PrimitiveIterator.OfLong iterator, int characteristics) Creates a Spliterator.OfLong using a given LongStream.LongIterator as the source of elements, with no initial size estimate. |
Spliterator.OfDouble | spliteratorUnknownSize(PrimitiveIterator.OfDouble iterator, int characteristics) Creates a Spliterator.OfDouble using a given DoubleStream.DoubleIterator as the source of elements, with no initial size estimate. |