| Class | Description |
|---|---|
| Association<K,V> |
This class defines an association between a key and a value.
|
| Bag<E> |
This collection class implements an ordered collection that allows duplicate elements.
|
| Dictionary<V> |
This collection class is a convenience class that implements a
Map whose keys
are always of type String. |
| List<E> |
This collection class implements a sortable list which performs very well for both inserts and
indexed lookups of its values.
|
| Map<K,V> |
This collection class implements a sortable collection containing key-value associations.
|
| Queue<E> |
This collection class implements a queue (FIFO) data structure.
|
| Set<E> |
This collection class implements an ordered collection that does not allow duplicate elements.
|
| Stack<E> |
This collection class implements a stack (LIFO) data structure.
|
Copyright © 2015 Crater Dog Technologies(TM). All rights reserved.