软件包 | 描述 |
---|---|
java.util |
包含集合框架、遗留的集合类、事件模型、日期和时间的设施、国际化和各种实用工具类(一个字符串标记,一个随机数发生器,和一位阵列)。
|
java.util.stream |
类,以支持元素流上的功能样式操作,如Map减少集合上的转换。
|
Modifier and Type | Class and Description |
---|---|
static class |
Spliterators.AbstractLongSpliterator
摘要
Spliterator.OfLong
trySplit 允许有限的并行实现。
|
Modifier and Type | Method and Description |
---|---|
static Spliterator.OfLong |
Spliterators.emptyLongSpliterator()
创建一个空的
Spliterator.OfLong
|
static Spliterator.OfLong |
Arrays.spliterator(long[] array)
返回一个
Spliterator.OfLong 覆盖所有指定的数组。
|
static Spliterator.OfLong |
Spliterators.spliterator(long[] array, int additionalCharacteristics)
创建一个
Spliterator.OfLong 覆盖该元素的一个给定的数组,使用一组自定义的spliterator特性。
|
static Spliterator.OfLong |
Arrays.spliterator(long[] array, int startInclusive, int endExclusive)
返回一个
Spliterator.OfLong 覆盖指定数组的指定范围。
|
static Spliterator.OfLong |
Spliterators.spliterator(long[] array, int fromIndex, int toIndex, int additionalCharacteristics)
创建一个
Spliterator.OfLong 覆盖的范围内的元素的一个给定的数组,使用一组自定义的spliterator特性。
|
static Spliterator.OfLong |
Spliterators.spliterator(PrimitiveIterator.OfLong iterator, long size, int characteristics)
创建一个
Spliterator.OfLong 使用给定的
LongStream.LongIterator 元素的来源,和对于一个给定的最初报告的大小。
|
static Spliterator.OfLong |
Spliterators.spliteratorUnknownSize(PrimitiveIterator.OfLong iterator, int characteristics)
创建一个
Spliterator.OfLong 使用给定的
LongStream.LongIterator 元素的来源,没有初始规模估算。
|
Spliterator.OfLong |
Spliterators.AbstractLongSpliterator.trySplit()
如果这spliterator可以分割,返回一个spliterator覆盖的元素,将这一方法,在回归,不是这个spliterator覆盖。
|
Spliterator.OfLong |
Spliterator.OfLong.trySplit() |
Modifier and Type | Method and Description |
---|---|
static PrimitiveIterator.OfLong |
Spliterators.iterator(Spliterator.OfLong spliterator)
创建从一个
PrimitiveIterator.OfLong
Spliterator.OfLong 。
|
Modifier and Type | Method and Description |
---|---|
Spliterator.OfLong |
LongStream.spliterator() |
Modifier and Type | Method and Description |
---|---|
static LongStream |
StreamSupport.longStream(Spliterator.OfLong spliterator, boolean parallel)
创建一个新的顺序或并行从
Spliterator.OfLong
LongStream 。
|
Modifier and Type | Method and Description |
---|---|
static LongStream |
StreamSupport.longStream(Supplier<? extends Spliterator.OfLong> supplier, int characteristics, boolean parallel)
创建一个新的顺序或并行从
Supplier 的
Spliterator.OfLong
LongStream 。
|
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.