| Package | Description |
|---|---|
| _templates.java.util | |
| _templates.javolution.text | |
| _templates.javolution.util |
| Modifier and Type | Class and Description |
|---|---|
class |
ArrayList |
class |
HashMap |
class |
HashSet |
class |
LinkedHashMap |
class |
LinkedHashSet |
class |
LinkedList |
| Modifier and Type | Class and Description |
|---|---|
class |
Text
This class represents an immutable character sequence with
fast
concatenation, insertion and
deletion capabilities (O[Log(n)]) instead of
O[n] for StringBuffer/StringBuilder). |
class |
TextBuilder
This class represents an
Appendable text whose capacity expands
gently without incurring expensive resize/copy operations ever. |
| 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 |
FastMap
This class represents a hash map with real-time behavior;
smooth capacity increase and thread-safe without external
synchronization when
shared. |
static class |
FastMap.Entry
This class represents a
FastMap entry. |
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).
|
class |
Index
This class represents a unique index which can be used instead of
java.lang.Integer for primitive data types collections. |
Copyright © 2005–2024 Javolution. All rights reserved.