Java Data Type Tutorial - Byte Example








Byte class wraps a value of primitive type byte in an object.

Byte class provides several methods for converting a byte to a String and a String to a byte.

Field

  1. Byte BYTES
  2. Byte MAX_VALUE
  3. Byte MIN_VALUE
  4. Byte SIZE
  5. Byte TYPE




Constructor

  1. Byte Byte(byte value)
  2. Byte Byte(String s) throws NumberFormatException

Method

  1. Byte byteValue()
  2. Byte compareTo(Byte anotherByte)
  3. Byte compare(byte x, byte y)
  4. Byte decode(String nm) throws NumberFormatException
  5. Byte doubleValue()
  6. Byte equals(Object obj)
  7. Byte floatValue()
  8. Byte hashCode()
  9. Byte hashCode(byte value)
  10. Byte intValue()
  11. Byte longValue()
  12. Byte parseByte(String s, int radix) throws NumberFormatException
  13. Byte parseByte(String s) throws NumberFormatException
  14. Byte shortValue()
  15. Byte toString()
  16. Byte toString(byte b)
  17. Byte toUnsignedInt(byte x)
  18. Byte toUnsignedLong(byte x)
  19. Byte valueOf(byte b)
  20. Byte valueOf(String s, int radix) throws NumberFormatException
  21. Byte valueOf(String s) throws NumberFormatException