Uses of Class
org.klojang.util.MutableInt

Packages that use MutableInt
Package
Description
Utility classes for working with strings, numbers, arrays, collections, etc.
  • Uses of MutableInt in org.klojang.util

    Methods in org.klojang.util with parameters of type MutableInt
    Modifier and Type
    Method
    Description
    boolean
    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).
    Constructors in org.klojang.util with parameters of type MutableInt
    Modifier
    Constructor
    Description
     
    Instantiates a MutableInt initialized to the current value of another instance.