Package | Description |
---|---|
_templates.java.util | |
_templates.javolution.util |
Modifier and Type | Interface and Description |
---|---|
interface |
List |
interface |
Queue |
interface |
Set |
interface |
SortedSet |
Modifier and Type | Class and Description |
---|---|
class |
ArrayList |
class |
HashSet |
class |
LinkedHashSet |
class |
LinkedList |
Modifier and Type | Method and Description |
---|---|
Collection |
Map.values() |
Modifier and Type | Method and Description |
---|---|
boolean |
Set.addAll(Collection c) |
boolean |
List.addAll(Collection c) |
boolean |
Collection.addAll(Collection c) |
boolean |
List.addAll(int index,
Collection c) |
boolean |
Set.containsAll(Collection c) |
boolean |
List.containsAll(Collection c) |
boolean |
Collection.containsAll(Collection c) |
boolean |
Set.removeAll(Collection c) |
boolean |
List.removeAll(Collection c) |
boolean |
Collection.removeAll(Collection c) |
boolean |
Set.retainAll(Collection c) |
boolean |
List.retainAll(Collection c) |
boolean |
Collection.retainAll(Collection c) |
Modifier and Type | Class and Description |
---|---|
class |
FastBitSet
This class represents either a table of bits or a set of non-negative
numbers.
|
class |
FastCollection
This class represents collections which can quickly be iterated over
(forward or backward) and which an be made
thread-safe
and/or unmodifiable . |
class |
FastList
This class represents a linked list with real-time behavior;
smooth capacity increase and no memory allocation as long as the
list size does not exceed its initial capacity.
|
class |
FastSet
This class represents a set collection backed by a
FastMap ;
smooth capacity increase and no rehashing ever performed. |
class |
FastTable
This class represents a random access collection with real-time behavior
(smooth capacity increase).
|
Modifier and Type | Method and Description |
---|---|
Collection |
FastCollection.shared()
Returns a thread-safe read-write view of this collection.
|
Collection |
FastCollection.unmodifiable()
Returns the unmodifiable view associated to this collection.
|
Collection |
FastList.unmodifiable() |
Collection |
FastTable.unmodifiable() |
Collection |
FastSet.unmodifiable() |
Collection |
LocalMap.values()
Returns a
FastCollection view of the values contained in this
map. |
Collection |
FastMap.values()
Returns a
FastCollection view of the values contained in this
map. |
Modifier and Type | Method and Description |
---|---|
boolean |
FastCollection.addAll(Collection c)
Appends all of the values in the specified collection to the end of
this collection, in the order that they are returned by the specified
collection's iterator.
|
boolean |
FastList.addAll(int index,
Collection values)
Inserts all of the values in the specified collection into this
list at the specified position.
|
boolean |
FastTable.addAll(int index,
Collection values)
Inserts all of the values in the specified collection into this
table at the specified position.
|
boolean |
FastCollection.containsAll(Collection c)
Indicates if this collection contains all of the values of the
specified collection.
|
boolean |
FastCollection.removeAll(Collection c)
Removes from this collection all the values that are contained in the
specified collection.
|
boolean |
FastCollection.retainAll(Collection c)
Retains only the values in this collection that are contained in the
specified collection.
|
Constructor and Description |
---|
FastList(Collection values)
Creates a list containing the specified values, in the order they
are returned by the collection's iterator.
|
FastTable(Collection values)
Creates a table containing the specified values, in the order they
are returned by the collection's iterator.
|
Copyright © 2005–2020 Javolution. All rights reserved.