Java Reference
In-Depth Information
static String[] getISOLanguages()
Not available in
PDAP.
String getLanguage()
Available in PDAP.
String getVariant()
Available in PDAP.
int hashCode()
Available in PDAP.
static void setDefault(Locale newLocale)
Not available in
PDAP.
String toString()
Available in PDAP.
Random
Table B.98. Methods of the Class Random
Method
Availability in CLDC
Random()
Available in CLDC.
Random(long seed)
Available in CLDC.
protected int next(int bits)
Available in CLDC.
boolean nextBoolean()
Not available in CLDC.
Workaround:
(nextInt() & 1) == 0
void nextBytes(byte[] bytes)
Not available in CLDC.
double nextDouble()
Available in CLDC-NG.
float nextFloat()
Available in CLDC-NG.
double nextGaussian()
Not available in CLDC.
int nextInt()
Available in CLDC.
int nextInt(int n)
Not available in CLDC.
long nextLong()
Available in CLDC.
void setSeed(long seed)
Available in CLDC.
Timer
Table B.99. Methods of the Clas s Timer
Method
Availability in CLDC
Timer()
Available in CLDC.
Timer(boolean isDaemon)
Not available in CLDC because
daemon threads are not
a vailable.
void cancel()
Available in CLDC.
void schedule(TimerTask task, Date time)
Available in CLDC.
void schedule(TimerTask task, Date
firstTime, long period )
Available in CLDC.
void schedule(TimerTask task, long delay)
Available in CLDC.
void schedule(TimerTask task, long delay,
long period)
Available in CLDC.
void scheduleAtFixedRate(TimerTask task,
Date firstTime, long period)
Available in CLDC.
void scheduleAtFixedRate(TimerTask task,
long delay, long period)
Available in CLDC.
Search WWH ::




Custom Search