Package opennlp.tools.util
Klasse MutableInt
java.lang.Object
opennlp.tools.util.MutableInt
This is a non-thread safe mutable int.
-
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
-
Konstruktordetails
-
MutableInt
public MutableInt(int i) - Parameter:
i
- The initialint
value to encapsulate.
-
-
Methodendetails
-
increment
public void increment()Adds1
to the curren value. -
getValue
public int getValue()- Gibt zurück:
- Retrieves the current value of the
MutableInt
.
-