Java Reference
In-Depth Information
(byte) shortValue()
int compareTo(Object o)
Not available in CLDC.
int compareTo(Short
anotherShort)
Not available in CLDC.
Workaround: Compare the return values of shortValue()
Static Short decode(String
nm)
Not available in CLDC.
Workaround: Determine radix using nm.startsWith() ,
then apply parseShort() with corresponding radix.
Double doubleValue()
Not available in CLDC.
boolean equals(Object obj)
Available in CLDC.
float floatValue()
Not available in CLDC.
int hashCode()
Available in CLDC.
int intValue()
Not available in CLDC.
Workaround:
(int) shortValue()
long longValue()
Not available in CLDC.
Workaround:
(int) shortValue()
static short
parseShort(String s)
Available in CLDC.
static short parseShort
(Strings, int radix)
Available in CLDC.
short shortValue()
Available in CLDC.
String toString()
Available in CLDC.
static String
toString(shorts)
Not available in CLDC.
Workaround:
(""+ s)
or
new Short(s).toString()
static Short valueOf(String
s)
Not available in CLDC.
Workaround:
new Short(parseShort (s));
static Short valueOf
(Strings, int radix)
Not available in CLDC.
Workaround:
new Short(parseShort (s, radix));
String
Table B.82. Methods of the Class String
Search WWH ::




Custom Search