Package Torello.Java.Function
Interface IntShortConsumer
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IntShortConsumer
Function-Pointer Input:int, short
Output:void
.
This is a consumer having an'accept(...)'
method which accepts two primitives-type parameters as follows type:'int'
'short'
Hi-Lited Source-Code:- View Here: Torello/Java/Function/IntShortConsumer.java
- Open New Browser-Tab: Torello/Java/Function/IntShortConsumer.java
-
-
Method Summary
@FunctionalInterface (Lambda) Method Modifier and Type Method void
accept(int i, short s)
Default Composition & Builder Method(s) Modifier and Type Method default IntShortConsumer
andThen(IntShortConsumer after)
-
-
-
Method Detail
-
accept
void accept(int i, short s)
Performs this operation on the given arguments.- Parameters:
i
- The integer (first) input-argument.s
- The short (second) input-argument.
-
andThen
default IntShortConsumer andThen(IntShortConsumer after)
Returns a composed consumer 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
- The operation to perform after this operation- Returns:
- A composed consumer that performs in sequence
'this'
operation followed by the'after'
operation. - Throws:
java.lang.NullPointerException
- if parameter'other'
is null.- Code:
- Exact Method Body:
if (after == null) throw new NullPointerException("null has been passed to parameter 'after'"); return (int i, short s) -> { this.accept(i, s); after.accept(i, s); };
-
-