-
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.
|
-