static Byte |
Byte.decode(String nm) |
static Integer |
Integer.decode(String s) |
static Long |
Long.decode(String s) |
static Short |
Short.decode(String nm) |
boolean |
Package.isCompatibleWith(String target)
Returns true iff this package is compatible with the given version.
|
static byte |
Byte.parseByte(String str) |
static byte |
Byte.parseByte(String s,
int radix) |
static int |
Integer.parseInt(String s) |
static int |
Integer.parseInt(String s,
int radix) |
static long |
Long.parseLong(String s) |
static long |
Long.parseLong(String s,
int radix) |
static short |
Short.parseShort(String s) |
static short |
Short.parseShort(String s,
int radix) |
static Byte |
Byte.valueOf(String str) |
static Float |
Float.valueOf(String s) |
static Integer |
Integer.valueOf(String s) |
static Long |
Long.valueOf(String s) |
static Short |
Short.valueOf(String s) |
static Byte |
Byte.valueOf(String str,
int radix) |
static Integer |
Integer.valueOf(String s,
int radix) |
static Long |
Long.valueOf(String s,
int radix) |
static Short |
Short.valueOf(String s,
int radix)
implemented
--> returns a Short with value parseShort(s, radix)
|