-
Fields in java.lang with type parameters of type Short
| Modifier and Type |
Field |
Description |
static Class<Short> |
Short.TYPE |
The Class object that represents the primitive type
short.
|
Methods in java.lang that return Short
| Modifier and Type |
Method |
Description |
static Short |
Short.decode(String string) |
Parses the specified string and returns a Short instance if the
string can be decoded into a short value.
|
static Short |
Short.valueOf(short s) |
Returns a Short instance for the specified short value.
|
static Short |
Short.valueOf(String string) |
Parses the specified string as a signed decimal short value.
|
static Short |
Short.valueOf(String string,
int radix) |
Parses the specified string as a signed short value using the specified
radix.
|
Methods in java.lang with parameters of type Short
| Modifier and Type |
Method |
Description |
int |
Short.compareTo(Short object) |
Compares this object to the specified short object to determine their
relative order.
|
-