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 Integer |
Integer.decode(String string) |
Parses the specified string and returns a Integer instance if the
string can be decoded into an integer value.
|
static Long |
Long.decode(String string) |
Parses the specified string and returns a Long instance if the
string can be decoded into a long value.
|
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 byte |
Byte.parseByte(String string) |
Parses the specified string as a signed decimal byte value.
|
static byte |
Byte.parseByte(String string,
int radix) |
Parses the specified string as a signed byte value using the specified
radix.
|
static double |
Double.parseDouble(String s) |
Returns the closest double value to the real number in the string.
|
static float |
Float.parseFloat(String string) |
Parses the specified string as a float value.
|
static int |
Integer.parseInt(String string) |
Parses the specified string as a signed decimal integer value.
|
static int |
Integer.parseInt(String string,
int radix) |
Parses the specified string as a signed integer value using the specified
radix.
|
static long |
Long.parseLong(String string) |
Parses the specified string as a signed decimal long value.
|
static long |
Long.parseLong(String string,
int radix) |
Parses the specified string as a signed long value using the specified
radix.
|
static short |
Short.parseShort(String string) |
Parses the specified string as a signed decimal short value.
|
static short |
Short.parseShort(String string,
int radix) |
Parses the specified string as a signed short value using the specified
radix.
|
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.
|
static Double |
Double.valueOf(String string) |
Parses the specified string as a double value.
|
static Float |
Float.valueOf(String string) |
|
static Integer |
Integer.valueOf(String string) |
Parses the specified string as a signed decimal integer value.
|
static Integer |
Integer.valueOf(String string,
int radix) |
Parses the specified string as a signed integer value using the specified
radix.
|
static Long |
Long.valueOf(String string) |
Parses the specified string as a signed decimal long value.
|
static Long |
Long.valueOf(String string,
int radix) |
Parses the specified string as a signed long value using the specified
radix.
|
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.
|