Package opennlp.tools.util
Class MutableInt
java.lang.Object
opennlp.tools.util.MutableInt
This is a non-thread safe mutable int.
-
Constructor Summary
-
Method Summary
-
Constructor Details
-
MutableInt
public MutableInt(int i) - Parameters:
i
- The initialint
value to encapsulate.
-
-
Method Details
-
increment
public void increment()Adds1
to the curren value. -
getValue
public int getValue()- Returns:
- Retrieves the current value of the
MutableInt
.
-