Interfaces for java style collection classes that are needed for layout and analysis algorithms.
Classes
| Class | Description | |
|---|---|---|
| Random |
This class provides methods that generates pseudo-random numbers of different
types, such as int, long, double and float using either
|
Interfaces
| Interface | Description | |
|---|---|---|
| ICollection | Collection is the root of the collection hierarchy. | |
| IIterator | An Iterator is used to sequence over a collection of objects. | |
| IList | List is a collection which maintains an ordering for its elements. | |
| IListIterator | An ListIterator is used to sequence over a List of objects. | |
| IMap | Map has a set of keys, each key is mapped to a single value. | |
| IMapEntry | Map.Entry is a key/value mapping which is contained in a Map. | |
| ISet | Set is a collection which does not allow duplicate elements. |
Remarks
Interfaces for java style collection classes that are needed for layout and analysis algorithms.