T - the type of argument 1E - the Exception type that the operation may throw@FunctionalInterface public interface ObjByteToShortE<T,E extends Exception>
(T, byte) -> short.| Modifier and Type | Method and Description |
|---|---|
static <T,E extends Exception> |
bind(ObjByteToShortE<T,E> f,
T t)
Binds
(t) to the beginning of f, returning a new function
of type (byte) -> short. |
static <T,E extends Exception> |
bind(ObjByteToShortE<T,E> f,
T t,
byte b)
Binds
(t, b) to f, returning a new function
of type () -> short. |
default ByteToShortE<E> |
bind(T t)
Binds
(t) to the beginning of this, returning a new function
of type (byte) -> short. |
default NilToShortE<E> |
bind(T t,
byte b)
Binds
(t, b) to this, returning a new function
of type () -> short. |
short |
call(T t,
byte b)
Performs this operation.
|
default ObjToShortE<T,E> |
rbind(byte b)
Binds
(b) to the end of this, returning a new function
of type (T) -> short. |
static <T,E extends Exception> |
rbind(ObjByteToShortE<T,E> f,
byte b)
Binds
(b) to the end of f, returning a new function
of type (T) -> short. |
static <T,E extends Exception> ByteToShortE<E> bind(ObjByteToShortE<T,E> f, T t)
(t) to the beginning of f, returning a new function
of type (byte) -> short.T - the type of argument 1E - the Exception type that the operation may throwf - the unbound functiont - argument 1(byte b) -> short that calls
f.call(t, b) and returns the result.default ByteToShortE<E> bind(T t)
(t) to the beginning of this, returning a new function
of type (byte) -> short.t - argument 1(byte b) -> short that calls
this.call(t, b) and returns the result.static <T,E extends Exception> ObjToShortE<T,E> rbind(ObjByteToShortE<T,E> f, byte b)
(b) to the end of f, returning a new function
of type (T) -> short.T - the type of argument 1E - the Exception type that the operation may throwf - the unbound functionb - argument 2(T t) -> short that calls
f.call(t, b) and returns the result.default ObjToShortE<T,E> rbind(byte b)
(b) to the end of this, returning a new function
of type (T) -> short.b - argument 2(T t) -> short that calls
this.call(t, b) and returns the result.static <T,E extends Exception> NilToShortE<E> bind(ObjByteToShortE<T,E> f, T t, byte b)
(t, b) to f, returning a new function
of type () -> short.T - the type of argument 1E - the Exception type that the operation may throwf - the unbound functiont - argument 1b - argument 2() -> short that calls
f.call(t, b) and returns the result.default NilToShortE<E> bind(T t, byte b)
(t, b) to this, returning a new function
of type () -> short.t - argument 1b - argument 2() -> short that calls
this.call(t, b) and returns the result.Copyright © 2014. All rights reserved.