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