Uses of Class
org.joou.UByte

  • Uses of UByte in org.joou

    Fields in org.joou declared as UByte
    Modifier and Type
    Field
    Description
    static final UByte
    UByte.MAX
    A constant holding the maximum value an unsigned byte can have as UByte, 28-1.
    static final UByte
    UByte.MIN
    A constant holding the minimum value an unsigned byte can have as UByte, 0.
    private static final UByte[]
    UByte.VALUES
    Cached values
    Methods in org.joou that return UByte
    Modifier and Type
    Method
    Description
    UByte.add(int val)
     
    UByte.add(UByte val)
     
    private static final UByte[]
    UByte.mkValues()
    Generate a cached value for each byte value.
    UByte.subtract(int val)
     
    UByte.subtract(UByte val)
     
    static UByte
    Unsigned.ubyte(byte value)
    Create an unsigned byte by masking it with 0xFF i.e.
    static UByte
    Unsigned.ubyte(int value)
    Create an unsigned byte
    static UByte
    Unsigned.ubyte(long value)
    Create an unsigned byte
    static UByte
    Unsigned.ubyte(short value)
    Create an unsigned byte
    static UByte
    Unsigned.ubyte(String value)
    Create an unsigned byte
    static UByte
    UByte.valueOf(byte value)
    Get an instance of an unsigned byte by masking it with 0xFF i.e.
    static UByte
    UByte.valueOf(int value)
    Get an instance of an unsigned byte
    static UByte
    UByte.valueOf(long value)
    Get an instance of an unsigned byte
    static UByte
    UByte.valueOf(short value)
    Get an instance of an unsigned byte
    static UByte
    UByte.valueOf(String value)
    Get an instance of an unsigned byte
    private static UByte
    UByte.valueOfUnchecked(short value)
    Get the value of a short without checking the value.
    Methods in org.joou with parameters of type UByte
    Modifier and Type
    Method
    Description
    UByte.add(UByte val)
     
    int
    UByte.compareTo(UByte o)
     
    UByte.subtract(UByte val)