Package org.multiverse.api.functions
Class IncIntFunction
java.lang.Object
org.multiverse.api.functions.IntFunction
org.multiverse.api.functions.IncIntFunction
A
IntFunction
that increased the value with the supplied amount.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates an IncIntFunction that adds one.IncIntFunction
(int inc) Creates an IncIntFunction with the specified -
Method Summary
Methods inherited from class org.multiverse.api.functions.IntFunction
call
-
Field Details
-
INSTANCE
-
inc
private final int inc
-
-
Constructor Details
-
IncIntFunction
public IncIntFunction()Creates an IncIntFunction that adds one. -
IncIntFunction
public IncIntFunction(int inc) Creates an IncIntFunction with the specified- Parameters:
inc
- the number to increment with.
-
-
Method Details
-
call
public int call(int current) Description copied from class:IntFunction
Calculates the new value based on the current value.- Specified by:
call
in classIntFunction
- Parameters:
current
- the current value.- Returns:
- the new value.
-
toString
-