Uses of Class
java.lang.Byte
-
Packages that use Byte Package Description java.lang -
-
Uses of Byte in java.lang
Methods in java.lang that return Byte Modifier and Type Method Description static Byte
Byte. decode(String string)
Parses the specified string and returns aByte
instance if the string can be decoded into a single byte value.static Byte
Byte. valueOf(byte b)
Returns aByte
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.
-