Skip to content

Most visited

Recently visited

navigation
Added in API level 24

ObjDoubleConsumer

public interface ObjDoubleConsumer

java.util.function.ObjDoubleConsumer<T>


Represents an operation that accepts an object-valued and a double-valued argument, and returns no result. This is the (reference, double) specialization of BiConsumer. Unlike most other functional interfaces, ObjDoubleConsumer is expected to operate via side-effects.

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

See also:

Summary

Public methods

abstract void accept(T t, double value)

Performs this operation on the given arguments.

Public methods

accept

Added in API level 24
void accept (T t, 
                double value)

Performs this operation on the given arguments.

Parameters
t T: the first input argument
value double: the second input argument
This site uses cookies to store your preferences for site-specific language and display options.

Hooray!

This class requires API level or higher

This doc is hidden because your selected API level for the documentation is . You can change the documentation API level with the selector above the left navigation.

For more information about specifying the API level your app requires, read Supporting Different Platform Versions.