Uses of Class
net.ajaest.lib.data.UByte

Packages that use UByte
net.ajaest.lib.data contains classes that stores data 
 

Uses of UByte in net.ajaest.lib.data
 

Fields in net.ajaest.lib.data declared as UByte
static UByte UByte.MAX_VALUE
           
static UByte UByte.MIN_VALUE
           
 

Methods in net.ajaest.lib.data that return UByte
 UByte UByte.add(UByte val)
          Returns a UByte whose value is (this + val).
 UByte UByte.divide(UByte val)
          Returns a UByte whose value is (this / val).
 UByte UByte.gcd(UByte val)
          Returns a UByte whose value is the greatest common divisor of abs(this) and abs(val).
 UByte UByte.mod(UByte m)
          Returns a UByte whose value is (this mod m).
 UByte UByte.multiply(UByte val)
          Returns a UByte whose value is (this * val).
 UByte UByte.pow(int exponent)
          Returns a UByte whose value is (thisexponent).
 UByte UByte.square()
          Returns a UByte whose value is (this<sup>2</sup>).
 UByte UByte.subtract(UByte val)
          Returns a UByte whose value is abs(this - val).
 

Methods in net.ajaest.lib.data with parameters of type UByte
 UByte UByte.add(UByte val)
          Returns a UByte whose value is (this + val).
 int UByte.compareTo(UByte o)
           
 UByte UByte.divide(UByte val)
          Returns a UByte whose value is (this / val).
 UByte UByte.gcd(UByte val)
          Returns a UByte whose value is the greatest common divisor of abs(this) and abs(val).
 UByte UByte.mod(UByte m)
          Returns a UByte whose value is (this mod m).
 UByte UByte.multiply(UByte val)
          Returns a UByte whose value is (this * val).
 UByte UByte.subtract(UByte val)
          Returns a UByte whose value is abs(this - val).