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 IntUnaryOperatoradd(int delta)static IntUnaryOperatorconstant(int v)static IntUnaryOperatordiv(int factor)static IntUnaryOperatormul(int factor)static IntUnaryOperatorsub(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)
-
-