Java Reference
In-Depth Information
new Byte (Byte.parseByte (s));
static Byte valueOf
( String s, intradix )
Not available in CLDC.
Workaround:
new Byte (Byte.parseByte (s, radix);
Character
Table B.74. Methods of the Cl a ss Character
Method
Availability in CLDC
Character(char value)
Available in CLDC.
Char charValue()
Available in CLDC.
int compareTo(Character
anotherCharacter)
Not available in CLDC.
Workaround: Compare the return values of
c harValue()
int compareTo(Object o)
Not available in CLDC.
static int digit(char ch, int radix)
Available in CLDC.
boolean equals(Object obj)
Available in CLDC.
Not available in CLDC.
static char forDigit(int digit, int
radix)
Workaround:
(char) (digit > 9
? ((int) 'a') + digit - 10
: ((int) '0') + digit)
static int getNumericValue (char ch)
Not available in CLDC.
Incomplete workaround:
( (int) ch) - ((int) '0')
static int getType(char ch)
Not available in CLDC.
Workaround: For limited cases,
i sDigit() may help.
int hashCode()
Available in CLDC.
static boolean isDefined(char ch)
Not available in CLDC.
static boolean isDigit (char ch)
Available in CLDC.
static boolean
isIdentifierIgnorable(char ch)
Not available in CLDC.
static boolean isISOControl (char ch)
Not available in CLDC.
static boolean
isJavaIdentifierPart(char ch)
Not available in CLDC.
static boolean
isJavaIdentifierStart(char ch)
Not available in CLDC.
static boolean isJavaLetter (char ch)
Not available in CLDC(deprecated
J 2SE method).
static boolean isJavaLetterOrDigit
(char ch)
Not available in CLDC (deprecated
J 2SE method).
static boolean isLetter(char ch)
Not available in CLDC.
static boolean isLetterOrDigit (char
Not available in CLDC.
Search WWH ::




Custom Search