Uses of Interface
java.util.function.LongConsumer
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.
Functional interfaces provide target types for lambda expressions
and method references.
Classes to support functional-style operations on streams of elements, such
as map-reduce transformations on collections.
-
Uses of LongConsumer in java.util
Modifier and TypeClassDescriptionclass
A state object for collecting statistics such as count, min, max, sum, and average.Modifier and TypeMethodDescriptiondefault void
PrimitiveIterator.OfLong.forEachRemaining
(LongConsumer action) Performs the given action for each remaining element until all elements have been processed or the action throws an exception.void
OptionalLong.ifPresent
(LongConsumer action) If a value is present, performs the given action with the value, otherwise does nothing.void
OptionalLong.ifPresentOrElse
(LongConsumer action, Runnable emptyAction) If a value is present, performs the given action with the value, otherwise performs the given empty-based action. -
Uses of LongConsumer in java.util.function
Modifier and TypeMethodDescriptiondefault LongConsumer
LongConsumer.andThen
(LongConsumer after) Returns a composedLongConsumer
that performs, in sequence, this operation followed by theafter
operation.Modifier and TypeMethodDescriptiondefault LongConsumer
LongConsumer.andThen
(LongConsumer after) Returns a composedLongConsumer
that performs, in sequence, this operation followed by theafter
operation. -
Uses of LongConsumer in java.util.stream
Modifier and TypeInterfaceDescriptionstatic interface
A mutable builder for aLongStream
.Modifier and TypeMethodDescriptionvoid
LongStream.LongMapMultiConsumer.accept
(long value, LongConsumer lc) Replaces the givenvalue
with zero or more values by feeding the mapped values to thelc
consumer.void
LongStream.forEach
(LongConsumer action) Performs an action for each element of this stream.void
LongStream.forEachOrdered
(LongConsumer action) Performs an action for each element of this stream, guaranteeing that each element is processed in encounter order for streams that have a defined encounter order.LongStream.peek
(LongConsumer action) Returns a stream consisting of the elements of this stream, additionally performing the provided action on each element as elements are consumed from the resulting stream.Modifier and TypeMethodDescriptiondefault LongStream
Stream.mapMultiToLong
(BiConsumer<? super T, ? super LongConsumer> mapper) Returns aLongStream
consisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.