Consumers (from some input(s) T1, T2, ...See: Description
| Interface | Description |
|---|---|
| Consumer0 |
Represents an operation that accepts no arguments and returns no result.
|
| Consumer1<T1> |
Represents an operation that accepts one argument and returns no result.
|
| Consumer2<T1,T2> |
Represents an operation that accepts two arguments and returns no result.
|
| ConsumerN |
Represents an operation that accepts
n arguments and returns no result. |
| Class | Description |
|---|---|
| ConsumerN.Instance |
An instance of
AbstractConsumerN which properly defines the
arity of that particular consumer. |
Consumers (from some input(s) T1, T2, ... to no output).
Some functional interfaces are specialized such that the type parameters are primitives with additional type prefixes.