| Package | Description |
|---|---|
| craterdog.collections | |
| craterdog.collections.abstractions | |
| craterdog.collections.primitives |
| Modifier and Type | Class and Description |
|---|---|
class |
Dictionary<V>
This collection class is a convenience class that implements a
Map whose keys
are always of type String. |
class |
List<E>
This collection class implements a sortable list which performs very well for both inserts and
indexed lookups of its values.
|
class |
Map<K,V>
This collection class implements a sortable collection containing key-value associations.
|
| Modifier and Type | Method and Description |
|---|---|
static <E> SortableCollection<E> |
SortableCollection.concatenate(SortableCollection<E> collection1,
SortableCollection<E> collection2)
This method returns a new collection that is the concatenation of this collection with
the specified collection.
|
| Modifier and Type | Method and Description |
|---|---|
static <E> SortableCollection<E> |
SortableCollection.concatenate(SortableCollection<E> collection1,
SortableCollection<E> collection2)
This method returns a new collection that is the concatenation of this collection with
the specified collection.
|
static <E> SortableCollection<E> |
SortableCollection.concatenate(SortableCollection<E> collection1,
SortableCollection<E> collection2)
This method returns a new collection that is the concatenation of this collection with
the specified collection.
|
void |
Sorter.sortCollection(SortableCollection<E> collection)
This method sorts the elements of its collection using a specific
sorting algorithm.
|
abstract void |
Sorter.sortCollection(SortableCollection<E> collection,
java.util.Comparator<? super E> comparator)
This method sorts the elements of its collection using a specific
sorting algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
void |
RandomSorter.sortCollection(SortableCollection<E> collection,
java.util.Comparator<? super E> comparator) |
void |
MergeSorter.sortCollection(SortableCollection<E> collection,
java.util.Comparator<? super E> comparator) |
Copyright © 2015 Crater Dog Technologies(TM). All rights reserved.