R - the type of the return value@FunctionalInterface public interface IntShortToObj<R> extends IntShortToObjE<R,RuntimeException>
(int, short) -> R.| Modifier and Type | Method and Description |
|---|---|
default ShortToObj<R> |
bind(int i)
Binds
(i) to the beginning of this, returning a new function
of type (short) -> R. |
default NilToObj<R> |
bind(int i,
short sh)
Binds
(i, sh) to this, returning a new function
of type () -> R. |
static <R> ShortToObj<R> |
bind(IntShortToObj<R> f,
int i)
Binds
(i) to the beginning of f, returning a new function
of type (short) -> R. |
static <R> NilToObj<R> |
bind(IntShortToObj<R> f,
int i,
short sh)
Binds
(i, sh) to f, returning a new function
of type () -> R. |
static <R> IntToObj<R> |
rbind(IntShortToObj<R> f,
short sh)
Binds
(sh) to the end of f, returning a new function
of type (int) -> R. |
default IntToObj<R> |
rbind(short sh)
Binds
(sh) to the end of this, returning a new function
of type (int) -> R. |
static <R,E extends Exception> |
unchecked(Function<? super E,RuntimeException> toRuntime,
IntShortToObjE<R,E> f)
Returns a wrapped version of
f that uses toRuntime to convert any checked
Exception to a RuntimeException. |
static <R,E extends Exception> |
unchecked(IntShortToObjE<R,E> f)
Returns a wrapped version of
f that wraps any checked Exception with a
RuntimeException. |
static <R,E extends IOException> |
uncheckedIO(IntShortToObjE<R,E> f)
|
bind, bind, call, rbindstatic <R,E extends Exception> IntShortToObj<R> unchecked(Function<? super E,RuntimeException> toRuntime, IntShortToObjE<R,E> f)
f that uses toRuntime to convert any checked
Exception to a RuntimeException.R - the type of the return valueE - the Exception type that the operation may throwtoRuntime - if a checked exception is thrown from
IntShortToObjE.call(int, short), then this function
is called in in order to convert it to a RuntimeExceptionf - the operation to wrapf that does not throw checked exceptionsstatic <R,E extends Exception> IntShortToObj<R> unchecked(IntShortToObjE<R,E> f)
f that wraps any checked Exception with a
RuntimeException.R - the type of the return valueE - the Exception type that the operation may throwf - the operation to wrapf that does not throw checked exceptionsstatic <R,E extends IOException> IntShortToObj<R> uncheckedIO(IntShortToObjE<R,E> f)
R - the type of the return valueE - the Exception type that the operation may throwf - the operation to wrapf that throws UncheckedIOException instead of
IOExceptionstatic <R> ShortToObj<R> bind(IntShortToObj<R> f, int i)
(i) to the beginning of f, returning a new function
of type (short) -> R.R - the type of the return valuef - the unbound functioni - argument 1(short sh) -> R that calls
f.call(i, sh) and returns the result.default ShortToObj<R> bind(int i)
(i) to the beginning of this, returning a new function
of type (short) -> R.bind in interface IntShortToObjE<R,RuntimeException>i - argument 1(short sh) -> R that calls
this.call(i, sh) and returns the result.static <R> IntToObj<R> rbind(IntShortToObj<R> f, short sh)
(sh) to the end of f, returning a new function
of type (int) -> R.R - the type of the return valuef - the unbound functionsh - argument 2(int i) -> R that calls
f.call(i, sh) and returns the result.default IntToObj<R> rbind(short sh)
(sh) to the end of this, returning a new function
of type (int) -> R.rbind in interface IntShortToObjE<R,RuntimeException>sh - argument 2(int i) -> R that calls
this.call(i, sh) and returns the result.static <R> NilToObj<R> bind(IntShortToObj<R> f, int i, short sh)
(i, sh) to f, returning a new function
of type () -> R.R - the type of the return valuef - the unbound functioni - argument 1sh - argument 2() -> R that calls
f.call(i, sh) and returns the result.default NilToObj<R> bind(int i, short sh)
(i, sh) to this, returning a new function
of type () -> R.bind in interface IntShortToObjE<R,RuntimeException>i - argument 1sh - argument 2() -> R that calls
this.call(i, sh) and returns the result.Copyright © 2014. All rights reserved.