Uses of Class
org.klojang.util.MutableInt
Package
Description
Utility classes for working with strings, numbers, arrays, collections, etc.
-
Uses of MutableInt in org.klojang.util
Modifier and TypeMethodDescriptionboolean
MutableInt.eq
(MutableInt other) Corresponds to the==
(equals) operation.boolean
MutableInt.gt
(MutableInt other) Corresponds to the>
(greater than) operation.boolean
MutableInt.gte
(MutableInt other) Corresponds to the>=
(greater or equal) operation.boolean
MutableInt.lt
(MutableInt other) Corresponds to the<
(less than) operation.boolean
MutableInt.lte
(MutableInt other) Corresponds to the<=
(less or equal) operation.int
MutableInt.minIs
(MutableInt other) Corresponds to the-=
(minus-is) operation.boolean
MutableInt.ne
(MutableInt other) Corresponds to the!=
(not equals) operation.int
MutableInt.plusIs
(MutableInt other) Corresponds to the+=
operation.int
MutableInt.set
(MutableInt other) Corresponds to the assignment operation (i = j
).ModifierConstructorDescriptionMutableInt
(MutableInt other) Instantiates aMutableInt
initialized to the current value of another instance.