Class Int2IntFunction
- java.lang.Object
-
- org.apache.sshd.common.util.functors.Int2IntFunction
-
public final class Int2IntFunction extends Object
- Author:
- Apache MINA SSHD Project
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IntUnaryOperator
add(int delta)
static IntUnaryOperator
constant(int v)
static IntUnaryOperator
div(int factor)
static IntUnaryOperator
mul(int factor)
static IntUnaryOperator
sub(int delta)
-
-
-
Method Detail
-
sub
public static IntUnaryOperator sub(int delta)
-
add
public static IntUnaryOperator add(int delta)
-
mul
public static IntUnaryOperator mul(int factor)
-
constant
public static IntUnaryOperator constant(int v)
-
div
public static IntUnaryOperator div(int factor)
-
-