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