com.raelity.jvi
Class MutableInt

java.lang.Object
  extended by com.raelity.jvi.MutableInt
All Implemented Interfaces:
Comparable<MutableInt>

public class MutableInt
extends Object
implements Comparable<MutableInt>


Constructor Summary
MutableInt()
           
MutableInt(int value)
           
 
Method Summary
 void clearBits(int mask)
           
 int compareTo(MutableInt o)
           
 int getValue()
           
 void setBits(int mask)
           
 void setValue(int value)
           
 boolean testAllBits(int mask)
           
 boolean testAnyBits(int mask)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

MutableInt

public MutableInt()

MutableInt

public MutableInt(int value)
Method Detail

getValue

public final int getValue()

setValue

public final void setValue(int value)

setBits

public final void setBits(int mask)

clearBits

public final void clearBits(int mask)

testAnyBits

public final boolean testAnyBits(int mask)

testAllBits

public final boolean testAllBits(int mask)

compareTo

public int compareTo(MutableInt o)
Specified by:
compareTo in interface Comparable<MutableInt>

toString

public String toString()
Overrides:
toString in class Object