Uses of Interface
java.util.function.DoubleConsumer
Packages that use DoubleConsumer
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 DoubleConsumer in java.utilClasses in java.util that implement DoubleConsumerModifier and TypeClassDescriptionclassA state object for collecting statistics such as count, min, max, sum, and average.Methods in java.util with parameters of type DoubleConsumerModifier and TypeMethodDescriptiondefault voidPrimitiveIterator.OfDouble.forEachRemaining(DoubleConsumer action) Performs the given action for each remaining element until all elements have been processed or the action throws an exception.voidOptionalDouble.ifPresent(DoubleConsumer action) If a value is present, performs the given action with the value, otherwise does nothing.voidOptionalDouble.ifPresentOrElse(DoubleConsumer action, Runnable emptyAction) If a value is present, performs the given action with the value, otherwise performs the given empty-based action.
- 
Uses of DoubleConsumer in java.util.functionMethods in java.util.function that return DoubleConsumerModifier and TypeMethodDescriptiondefault DoubleConsumerDoubleConsumer.andThen(DoubleConsumer after) Returns a composedDoubleConsumerthat performs, in sequence, this operation followed by theafteroperation.Methods in java.util.function with parameters of type DoubleConsumerModifier and TypeMethodDescriptiondefault DoubleConsumerDoubleConsumer.andThen(DoubleConsumer after) Returns a composedDoubleConsumerthat performs, in sequence, this operation followed by theafteroperation.
- 
Uses of DoubleConsumer in java.util.streamSubinterfaces of DoubleConsumer in java.util.streamModifier and TypeInterfaceDescriptionstatic interfaceA mutable builder for aDoubleStream.Methods in java.util.stream with parameters of type DoubleConsumerModifier and TypeMethodDescriptionvoidDoubleStream.DoubleMapMultiConsumer.accept(double value, DoubleConsumer dc) Replaces the givenvaluewith zero or more values by feeding the mapped values to thedcconsumer.voidDoubleStream.forEach(DoubleConsumer action) Performs an action for each element of this stream.voidDoubleStream.forEachOrdered(DoubleConsumer 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.DoubleStream.peek(DoubleConsumer 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.Method parameters in java.util.stream with type arguments of type DoubleConsumerModifier and TypeMethodDescriptiondefault DoubleStreamStream.mapMultiToDouble(BiConsumer<? super T, ? super DoubleConsumer> mapper) Returns aDoubleStreamconsisting of the results of replacing each element of this stream with multiple elements, specifically zero or more elements.