Package totalcross.util

Utility classes, to deal with date, random number generation, and data structures (Vectors and Hashtables).

See:
          Description

Interface Summary
Comparable Comparable interface that must be implemented by Objects that can be compared to another one.
 

Class Summary
BigDecimal  
BigInteger Written using on-line Java Platform 1.2 API Specification, as well as "The Java class libraries", 2nd edition (Addison-Wesley, 1998) and "Applied Cryptography, Second Edition" by Bruce Schneier (Wiley, 1996).
Date The Date class is a general date data type(Object) that is similar to those built in to other languages.
Hashtable This class implements a hash table, which maps keys to values.
Hashtable.Entry Hashtable collision list.
IntHashtable This class implements a hashtable, which maps keys to values.
IntHashtable.Entry Hashtable collision list.
IntVector An int vector is an array of int's.
Logger A Logger object is used to log messages for a specific system or application component.
Properties Used to store properties pairs (key,value).
Properties.Boolean Implements a value of type boolean
Properties.Double Implements a value of type double
Properties.Int Implements a value of type int
Properties.Long Implements a value of type long
Properties.Str Implements a value of type totalcross.lang.String
Properties.Value Represents a generic value that can be stored here.
Random This is a simple Linear Congruential Generator which produces random numbers in the range [0,2^31), derived from ran0 in Numerical Recipies.
Vector A vector is an array of object references.
 

Exception Summary
ElementNotFoundException Thrown when an element of a Vector or a Hashtable is not found.
IntHashtable.DuplicatedKeyException Exception thrown when allowDuplicateKeys is set to false.
InvalidDateException Represents a date that is invalid.
 

Package totalcross.util Description

Utility classes, to deal with date, random number generation, and data structures (Vectors and Hashtables).