java.lang.Byte (JDK 1.1)
This class provides an object wrapper around the byte primitive type. It defines useful constants for the minimum and maximum values that can be stored by the byte type, and also a Class object constant that represents the byte type. It also provides various methods for converting Byte values to and from strings and other numeric types.
Most of the static methods of this class are used to convert a String to a Byte object or a byte value: the four parseByte() and valueOf() methods parse a number from the specified string, using an optionally specified radix, and return it in one of these two forms. The decode() method parses a byte specified in base 10, base 8, or base 16 and returns it as a Byte. If the string begins with "0x" or "#", it is interpreted as a hexadecimal number. If it begins with "0", it is interpreted as an octal number. Otherwise, it is interpreted as a decimal number.
Note that this class has two different toString() methods. One is static and converts a byte primitive value to a String. The other is the usual toString() method that converts a Byte object to a string. Most of the remaining methods convert a Byte to various primitive numeric types.
public final classByteextends Number { //Public ConstructorspublicByte(bytevalue); publicByte(Strings) throws NumberFormatException; //Constantspublic static final byteMAX_VALUE; public static final byteMIN_VALUE; public static final ClassTYPE; //Class Methodspublic static Bytedecode(Stringnm) throws NumberFormatException; public static byteparseByte(Strings) throws NumberFormatException; public static byteparseByte(Strings, intradix) throws NumberFormatException; public static StringtoString(byteb); public static BytevalueOf(Strings, intradix) throws NumberFormatException; public static BytevalueOf(Strings) throws NumberFormatException; //Public Instance Methodspublic bytebyteValue(); //Overrides Numberpublic doubledoubleValue(); //Defines Numberpublic booleanequals(Objectobj); //Overrides Objectpublic floatfloatValue(); //Defines Numberpublic inthashCode(); //Overrides Objectpublic intintValue(); //Defines Numberpublic longlongValue(); //Defines Numberpublic shortshortValue(); //Overrides Numberpublic StringtoString(); //Overrides Object}
Hierarchy:
Object->Number(Serializable)->Byte
Returned By:
Byte.decode(), Byte.valueOf()