Java java.util Spliterators fields, constructors, methods, implement or subclass

Example usage for Java java.util Spliterators fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.util Spliterators.

The text is from its open source code.

Method

SpliteratoremptySpliterator()
Creates an empty Spliterator

The empty spliterator reports Spliterator#SIZED and Spliterator#SUBSIZED .

Iteratoriterator(Spliterator spliterator)
Creates an Iterator from a Spliterator .
PrimitiveIterator.OfIntiterator(Spliterator.OfInt spliterator)
Creates an PrimitiveIterator.OfInt from a Spliterator.OfInt .
PrimitiveIterator.OfLongiterator(Spliterator.OfLong spliterator)
Creates an PrimitiveIterator.OfLong from a Spliterator.OfLong .
PrimitiveIterator.OfDoubleiterator(Spliterator.OfDouble spliterator)
Creates an PrimitiveIterator.OfDouble from a Spliterator.OfDouble .
Spliteratorspliterator(Iterator 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.OfIntspliterator(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.OfLongspliterator(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.OfDoublespliterator(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.
Spliteratorspliterator(Object[] array, int additionalCharacteristics)
Creates a Spliterator covering the elements of a given array, using a customized set of spliterator characteristics.
Spliterator.OfIntspliterator(int[] array, int additionalCharacteristics)
Creates a Spliterator.OfInt covering the elements of a given array, using a customized set of spliterator characteristics.
Spliterator.OfLongspliterator(long[] array, int additionalCharacteristics)
Creates a Spliterator.OfLong covering the elements of a given array, using a customized set of spliterator characteristics.
Spliterator.OfDoublespliterator(double[] array, int additionalCharacteristics)
Creates a Spliterator.OfDouble covering the elements of a given array, using a customized set of spliterator characteristics.
Spliteratorspliterator(Collection 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.
SpliteratorspliteratorUnknownSize(Iterator iterator, int characteristics)
Creates a Spliterator using a given Iterator as the source of elements, with no initial size estimate.
Spliterator.OfIntspliteratorUnknownSize(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.OfLongspliteratorUnknownSize(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.OfDoublespliteratorUnknownSize(PrimitiveIterator.OfDouble iterator, int characteristics)
Creates a Spliterator.OfDouble using a given DoubleStream.DoubleIterator as the source of elements, with no initial size estimate.