Uses of Class
java.util.OptionalInt
Package
Description
Contains the collections framework, some internationalization support classes,
a service loader, properties, random number generation, string parsing
and scanning classes, base64 encoding and decoding, a bit array, and
several miscellaneous utility classes.
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
-
Uses of OptionalInt in java.util
Modifier and TypeMethodDescriptionstatic OptionalInt
OptionalInt.empty()
Returns an emptyOptionalInt
instance.static OptionalInt
OptionalInt.of
(int value) Returns anOptionalInt
describing the given value. -
Uses of OptionalInt in java.util.stream
Modifier and TypeMethodDescriptionIntStream.findAny()
Returns anOptionalInt
describing some element of the stream, or an emptyOptionalInt
if the stream is empty.IntStream.findFirst()
Returns anOptionalInt
describing the first element of this stream, or an emptyOptionalInt
if the stream is empty.IntStream.max()
Returns anOptionalInt
describing the maximum element of this stream, or an empty optional if this stream is empty.IntStream.min()
Returns anOptionalInt
describing the minimum element of this stream, or an empty optional if this stream is empty.IntStream.reduce
(IntBinaryOperator op) Performs a reduction on the elements of this stream, using an associative accumulation function, and returns anOptionalInt
describing the reduced value, if any.