Top Description Methods
java.util.function

public Interface DoubleConsumer

Known Direct Subinterfaces
java.util.stream.DoubleStream.Builder, java.util.stream.Sink.OfDouble
Known Direct Implementers
java.util.stream.SpinedBuffer.OfDouble, java.util.stream.StreamSpliterators.UnorderedSliceSpliterator.OfDouble, java.util.stream.StreamSpliterators.ArrayBuffer.OfDouble, java.util.stream.WhileOps.UnorderedWhileSpliterator.OfDouble, java.util.DoubleSummaryStatistics, java.util.Spliterators.AbstractDoubleSpliterator.HoldingDoubleConsumer
Annotations
@FunctionalInterface
Imports
java.util.Objects

Represents an operation that accepts a single double-valued argument and returns no result. This is the primitive type specialization of Consumer for double. Unlike most other functional interfaces, DoubleConsumer is expected to operate via side-effects.

This is a functional interface whose functional method is accept(double).

Since
1.8
See Also
Consumer

Method Summary

Modifier and TypeMethod and Description
public void
accept(double
the input argument
value
)

Performs this operation on the given argument.

public default DoubleConsumer

Returns:

a composed DoubleConsumer that performs in sequence this operation followed by the after operation
andThen
(DoubleConsumer
the operation to perform after this operation
after
)

Returns a composed DoubleConsumer that performs, in sequence, this operation followed by the after operation.

Method Detail

acceptback to summary
public void accept(double value)

Performs this operation on the given argument.

Parameters
value:double

the input argument

andThenback to summary
public default DoubleConsumer andThen(DoubleConsumer after)

Returns a composed DoubleConsumer that performs, in sequence, this operation followed by the after operation. If performing either operation throws an exception, it is relayed to the caller of the composed operation. If performing this operation throws an exception, the after operation will not be performed.

Parameters
after:DoubleConsumer

the operation to perform after this operation

Returns:DoubleConsumer

a composed DoubleConsumer that performs in sequence this operation followed by the after operation

Exceptions
NullPointerException:
if after is null