public interface TSpliterator<T>
Modifier and Type | Interface and Description |
---|---|
static interface |
TSpliterator.OfDouble |
static interface |
TSpliterator.OfInt |
static interface |
TSpliterator.OfLong |
static interface |
TSpliterator.OfPrimitive<T,C,S extends TSpliterator.OfPrimitive<T,C,S>> |
Modifier and Type | Field and Description |
---|---|
static int |
CONCURRENT |
static int |
DISTINCT |
static int |
IMMUTABLE |
static int |
NONNULL |
static int |
ORDERED |
static int |
SIZED |
static int |
SORTED |
static int |
SUBSIZED |
Modifier and Type | Method and Description |
---|---|
int |
characteristics() |
long |
estimateSize() |
default void |
forEachRemaining(Consumer<? super T> action) |
default Comparator<? super T> |
getComparator() |
default long |
getExactSizeIfKnown() |
default boolean |
hasCharacteristics(int characteristics) |
boolean |
tryAdvance(Consumer<? super T> action) |
TSpliterator<T> |
trySplit() |
static final int ORDERED
static final int DISTINCT
static final int SORTED
static final int SIZED
static final int NONNULL
static final int IMMUTABLE
static final int CONCURRENT
static final int SUBSIZED
TSpliterator<T> trySplit()
long estimateSize()
default long getExactSizeIfKnown()
int characteristics()
default boolean hasCharacteristics(int characteristics)
default Comparator<? super T> getComparator()
Copyright © 2019. All rights reserved.