static Byte |
Byte.decodeâ(String nm) |
Decodes a String into a Byte .
|
static Integer |
Integer.decodeâ(String nm) |
Decodes a String into an Integer .
|
static Long |
Long.decodeâ(String nm) |
Decodes a String into a Long .
|
static Short |
Short.decodeâ(String nm) |
Decodes a String into a Short .
|
boolean |
Package.isCompatibleWithâ(String desired) |
Compare this package's specification version with a
desired version.
|
static byte |
Byte.parseByteâ(String s) |
Parses the string argument as a signed decimal
byte .
|
static byte |
Byte.parseByteâ(String s,
int radix) |
Parses the string argument as a signed byte in the
radix specified by the second argument.
|
static double |
Double.parseDoubleâ(String s) |
Returns a new double initialized to the value
represented by the specified String , as performed
by the valueOf method of class
Double .
|
static float |
Float.parseFloatâ(String s) |
Returns a new float initialized to the value
represented by the specified String , as performed
by the valueOf method of class Float .
|
static int |
Integer.parseIntâ(CharSequence s,
int beginIndex,
int endIndex,
int radix) |
Parses the CharSequence argument as a signed int in the
specified radix , beginning at the specified beginIndex
and extending to endIndex - 1 .
|
static int |
Integer.parseIntâ(String s) |
Parses the string argument as a signed decimal integer.
|
static int |
Integer.parseIntâ(String s,
int radix) |
Parses the string argument as a signed integer in the radix
specified by the second argument.
|
static long |
Long.parseLongâ(CharSequence s,
int beginIndex,
int endIndex,
int radix) |
Parses the CharSequence argument as a signed long in
the specified radix , beginning at the specified
beginIndex and extending to endIndex - 1 .
|
static long |
Long.parseLongâ(String s) |
Parses the string argument as a signed decimal long .
|
static long |
Long.parseLongâ(String s,
int radix) |
Parses the string argument as a signed long in the
radix specified by the second argument.
|
static short |
Short.parseShortâ(String s) |
Parses the string argument as a signed decimal
short .
|
static short |
Short.parseShortâ(String s,
int radix) |
Parses the string argument as a signed short in the
radix specified by the second argument.
|
static int |
Integer.parseUnsignedIntâ(CharSequence s,
int beginIndex,
int endIndex,
int radix) |
Parses the CharSequence argument as an unsigned int in
the specified radix , beginning at the specified
beginIndex and extending to endIndex - 1 .
|
static int |
Integer.parseUnsignedIntâ(String s) |
Parses the string argument as an unsigned decimal integer.
|
static int |
Integer.parseUnsignedIntâ(String s,
int radix) |
Parses the string argument as an unsigned integer in the radix
specified by the second argument.
|
static long |
Long.parseUnsignedLongâ(CharSequence s,
int beginIndex,
int endIndex,
int radix) |
Parses the CharSequence argument as an unsigned long in
the specified radix , beginning at the specified
beginIndex and extending to endIndex - 1 .
|
static long |
Long.parseUnsignedLongâ(String s) |
Parses the string argument as an unsigned decimal long .
|
static long |
Long.parseUnsignedLongâ(String s,
int radix) |
Parses the string argument as an unsigned long in the
radix specified by the second argument.
|
static Byte |
Byte.valueOfâ(String s) |
Returns a Byte object holding the value
given by the specified String .
|
static Byte |
Byte.valueOfâ(String s,
int radix) |
Returns a Byte object holding the value
extracted from the specified String when parsed
with the radix given by the second argument.
|
static Double |
Double.valueOfâ(String s) |
Returns a Double object holding the
double value represented by the argument string
s .
|
static Float |
Float.valueOfâ(String s) |
Returns a Float object holding the
float value represented by the argument string
s .
|
static Integer |
Integer.valueOfâ(String s) |
Returns an Integer object holding the
value of the specified String .
|
static Integer |
Integer.valueOfâ(String s,
int radix) |
Returns an Integer object holding the value
extracted from the specified String when parsed
with the radix given by the second argument.
|
static Long |
Long.valueOfâ(String s) |
Returns a Long object holding the value
of the specified String .
|
static Long |
Long.valueOfâ(String s,
int radix) |
Returns a Long object holding the value
extracted from the specified String when parsed
with the radix given by the second argument.
|
static Short |
Short.valueOfâ(String s) |
Returns a Short object holding the
value given by the specified String .
|
static Short |
Short.valueOfâ(String s,
int radix) |
Returns a Short object holding the value
extracted from the specified String when parsed
with the radix given by the second argument.
|