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