@FunctionalInterface
public interface IntToByteFunction3
Modifier and Type | Method and Description |
---|---|
byte |
applyAsByte(int value1,
int value2,
int value3)
Apply this function to the given 2 arguments.
|
default IntToCharFunction3 |
asIntToCharFunction()
View this as a 2
int to char function which
considers the byte values unsigned. |
default IntToDoubleFunction3 |
asIntToDoubleFunction()
View this as a 2
int to double function. |
default IntToIntFunction3 |
asIntToIntFunction()
View this as a 2
int to int function. |
default IntToLongFunction3 |
asIntToLongFunction()
View this as a 2
int to long function. |
default IntToShortFunction3 |
asIntToShortFunction()
View this as an
int to short function. |
default IntToDoubleFunction3 |
asIntToUnsignedDoubleFunction()
View this as a 2
int to unsigned double function. |
default IntToIntFunction3 |
asIntToUnsignedIntFunction()
View this as a 2
int to unsigned int function. |
default IntToLongFunction3 |
asIntToUnsignedLongFunction()
View this as a 2
int to unsigned long function. |
default IntToShortFunction3 |
asIntToUnsignedShortFunction()
View this as a 2
int to unsigned short function. |
default IntToByteFunction2 |
partial1(int value1)
View this function as one with 2 arguments using a fix first argument.
|
default IntToByteFunction2 |
partial2(int value2)
View this function as one with 2 arguments using a fix second argument.
|
default IntToByteFunction2 |
partial3(int value3)
View this function as one with 2 arguments using a fix third argument.
|
byte applyAsByte(int value1, int value2, int value3)
value1
- first argumentvalue2
- second argumentvalue3
- third argument@NotNull default IntToByteFunction2 partial1(int value1)
value1
- fix first argument@NotNull default IntToByteFunction2 partial2(int value2)
value2
- fix second argument@NotNull default IntToByteFunction2 partial3(int value3)
value3
- fix third argument@NotNull default IntToShortFunction3 asIntToShortFunction()
int
to short
function.-128
to 127
@NotNull default IntToShortFunction3 asIntToUnsignedShortFunction()
int
to unsigned short
function.0
to 255
@NotNull default IntToIntFunction3 asIntToIntFunction()
int
to int
function.-128
to 127
@NotNull default IntToIntFunction3 asIntToUnsignedIntFunction()
int
to unsigned int
function.0
to 255
@NotNull default IntToLongFunction3 asIntToLongFunction()
int
to long
function.-128L
to 127L
@NotNull default IntToLongFunction3 asIntToUnsignedLongFunction()
int
to unsigned long
function.0L
to 255L
@NotNull default IntToDoubleFunction3 asIntToDoubleFunction()
int
to double
function.-128.0
to 127.0
@NotNull default IntToDoubleFunction3 asIntToUnsignedDoubleFunction()
int
to unsigned double
function.0.0
to 255.0
@NotNull default IntToCharFunction3 asIntToCharFunction()
int
to char
function which
considers the byte values unsigned.(char)0
and (char)255