| Class | Description |
|---|---|
| AbstractMultimap<K,V,C extends Collection<V>> |
Combines a Map with List values to provide simple way to store multiple values for a key (multimap).
|
| Base64 |
Encodes and decodes to and from Base64 notation.
|
| Base64.InputStream |
A
Base64.InputStream will read data from another java.io.InputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly. |
| Base64.OutputStream |
A
Base64.OutputStream will write data to another java.io.OutputStream, given in the constructor,
and encode/decode to/from Base64 notation on the fly. |
| DateUtils |
Simple Date and time utils.
|
| DateUtils.DefaultCalendarThreadLocal |
Calendar objects are rather expensive: for heavy usage it's a good idea to use a single instance per thread
instead of calling Calendar.getInstance() multiple times.
|
| ListMap<K,V> |
Combines a Map with List values to provide simple way to store multiple values for a key (multimap).
|
| LongHashMap<T> |
An minimalistic hash map optimized for long keys.
|
| LongHashSet |
An minimalistic hash set optimized for long values.
|
| ObjectCache<KEY,VALUE> |
An in-memory object cache supporting soft/weak/strong references, maximum size (clearing the entries putted
first), and time-based expiration.
|
| PrimitiveArrayUtils | |
| SetMap<K,V> |
Combines a Map with Set values to provide simple way to store multiple values for a key (multimap).
|
| StringUtils |
Utilities for working with strings, like splitting, url-encoding, and MD5 digests.
|
| Enum | Description |
|---|---|
| ObjectCache.ReferenceType |
Copyright © 2016. All rights reserved.