Uses of Class
java.lang.Byte

Packages that use Byte
Package Description
java.lang  
org.robovm.rt.annotation  
  • Uses of Byte in java.lang

    Fields in java.lang with type parameters of type Byte
    Modifier and Type Field Description
    static Class<Byte> Byte.TYPE
    The Class object that represents the primitive type byte.
    Methods in java.lang that return Byte
    Modifier and Type Method Description
    static Byte Byte.decode​(String string)
    Parses the specified string and returns a Byte instance if the string can be decoded into a single byte value.
    static Byte Byte.valueOf​(byte b)
    Returns a Byte instance for the specified byte value.
    static Byte Byte.valueOf​(String string)
    Parses the specified string as a signed decimal byte value.
    static Byte Byte.valueOf​(String string, int radix)
    Parses the specified string as a signed byte value using the specified radix.
    Methods in java.lang with parameters of type Byte
    Modifier and Type Method Description
    int Byte.compareTo​(Byte object)
    Compares this object to the specified byte object to determine their relative order.
  • Uses of Byte in org.robovm.rt.annotation

    Methods in org.robovm.rt.annotation that return Byte
    Modifier and Type Method Description
    protected static Byte Annotation.box​(byte v)  
    Methods in org.robovm.rt.annotation with parameters of type Byte
    Modifier and Type Method Description
    protected static byte Annotation.unbox​(Byte v)