Package | Description |
---|---|
javolution.text |
Provides classes and interfaces to handle text.
|
javolution.util |
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<E>
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<E>
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<K,V>
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<K,V>
This class represents a
FastMap entry. |
class |
FastSet<E>
This class represents a set collection backed by a
FastMap ;
smooth capacity increase and no rehashing ever performed. |
class |
FastTable<E>
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–2014 Javolution. All rights reserved.