| Modifier and Type | Class and Description |
|---|---|
class |
CallbackList<CALLBACKTYPE extends ICallback>
This class manages a list of callbacks.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MapBasedAttributeContainer<KEYTYPE,VALUETYPE>
Base class for all kind of any-any mapping container.
|
class |
MapBasedAttributeContainerAny<KEYTYPE>
Base class for all kind of string-object mapping container.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ICommonsList<ELEMENTTYPE>
A special
List interface with extended functionality based on
ICommonsCollection. |
interface |
ICommonsMap<KEYTYPE,VALUETYPE>
A special
Map interface with extended functionality |
interface |
ICommonsNavigableMap<KEYTYPE,VALUETYPE>
A special
NavigableMap interface based on ICommonsSortedMap. |
interface |
ICommonsNavigableSet<ELEMENTTYPE>
A special
NavigableSet based interface with extended functionality
based on ICommonsSortedSet. |
interface |
ICommonsOrderedMap<KEYTYPE,VALUETYPE>
|
interface |
ICommonsOrderedSet<ELEMENTTYPE>
A special ordered
Set based interface with extended functionality
based on ICommonsSet. |
interface |
ICommonsSet<ELEMENTTYPE>
A special
Set interface with extended functionality based on
ICommonsCollection. |
interface |
ICommonsSortedMap<KEYTYPE,VALUETYPE>
A special
SortedMap based interface with extended functionality based
on ICommonsMap. |
interface |
ICommonsSortedSet<ELEMENTTYPE>
A special
SortedSet based interface with extended functionality based
on ICommonsSet. |
| Modifier and Type | Class and Description |
|---|---|
class |
CommonsArrayList<ELEMENTTYPE>
A special
ArrayList implementation based on ICommonsList. |
class |
CommonsConcurrentHashMap<KEYTYPE,VALUETYPE>
A special
ConcurrentHashMap implementation based on
ICommonsMap. |
class |
CommonsCopyOnWriteArrayList<ELEMENTTYPE>
A special
CommonsCopyOnWriteArrayList implementation based on
ICommonsList. |
class |
CommonsCopyOnWriteArraySet<ELEMENTTYPE>
A special
CopyOnWriteArraySet implementation based on
ICommonsSet. |
class |
CommonsEnumMap<KEYTYPE extends Enum<KEYTYPE>,VALUETYPE>
A special
EnumMap implementation based on ICommonsMap. |
class |
CommonsHashMap<KEYTYPE,VALUETYPE>
A special
HashMap implementation based on ICommonsMap. |
class |
CommonsHashSet<ELEMENTTYPE>
A special
HashSet implementation based on ICommonsSet. |
class |
CommonsLinkedHashMap<KEYTYPE,VALUETYPE>
A special
LinkedHashMap implementation based on
ICommonsOrderedMap. |
class |
CommonsLinkedHashSet<ELEMENTTYPE>
A special
LinkedHashSet implementation based on
ICommonsOrderedSet. |
class |
CommonsLinkedList<ELEMENTTYPE>
A special
LinkedList implementation based on ICommonsList. |
class |
CommonsTreeMap<KEYTYPE,VALUETYPE>
A special
TreeMap implementation based on
ICommonsNavigableMap. |
class |
CommonsTreeSet<ELEMENTTYPE>
A special
TreeSet implementation based on
ICommonsNavigableSet. |
class |
CommonsVector<ELEMENTTYPE>
A special
Vector implementation based on ICommonsList. |
class |
CommonsWeakHashMap<KEYTYPE,VALUETYPE>
A special
WeakHashMap implementation based on ICommonsMap. |
| Modifier and Type | Class and Description |
|---|---|
class |
EmptySortedSet<T>
Default implementation of an empty sorted set.
|
class |
LoggingLRUMap<KEYTYPE,VALUETYPE>
A specific
LRUMap that emits a warning once the map is full and the
oldest entry gets discarded. |
class |
LRUMap<KEYTYPE,VALUETYPE>
A special ordered map, that has an upper limit of contained elements.
|
class |
LRUSet<ELEMENTTYPE>
A special ordered set, that has an upper limit of contained elements.
|
class |
NonBlockingStack<ELEMENTTYPE>
A version of a stack that does not use
Vector but an
CommonsArrayList as the underlying data structure as opposed to
Stack. |
class |
SafeArrayList<ELEMENTTYPE>
This is a specialized
CommonsArrayList that can handle read accesses
on list items that are not yet in the container. |
class |
SafeVector<ELEMENTTYPE>
This is a specialized
CommonsVector that can handle read accesses on
list items that are not yet in the container. |
class |
SingleElementList<ELEMENTTYPE>
Implementation of the
ICommonsList interface handling exactly one
element and no more! |
class |
SingleElementMap<KEYTYPE,VALUETYPE>
ICommonsMap implementation that can only keep 0 or 1 element. |
class |
WrappedList<ELEMENTTYPE>
This is a facade for a
List. |
class |
WrappedSet<ELEMENTTYPE>
This is a facade for a
Set. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
IMultiMap<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsCollection<VALUETYPE>>
Base interface for a multi map (one key with several values).
|
interface |
IMultiMapListBased<KEYTYPE,VALUETYPE>
Interface for a multi map that uses a
ICommonsList for the storage. |
interface |
IMultiMapMapBased<KEYTYPE1,KEYTYPE2,VALUETYPE,MAPTYPE extends ICommonsMap<KEYTYPE2,VALUETYPE>>
Base interface for a multi map (one key with several values).
|
interface |
IMultiMapSetBased<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsSet<VALUETYPE>>
Interface for a multi map that uses a
ICommonsSet for the storage. |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractMultiConcurrentHashMap<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsCollection<VALUETYPE>>
Abstract multi map based on
ConcurrentHashMap. |
class |
AbstractMultiConcurrentHashMapListBased<KEYTYPE,VALUETYPE>
Abstract multi map based on
ConcurrentHashMap
and ICommonsList values. |
class |
AbstractMultiConcurrentHashMapSetBased<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsSet<VALUETYPE>>
Abstract multi map based on
ConcurrentHashMap
and ICommonsSet values. |
class |
AbstractMultiHashMap<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsCollection<VALUETYPE>>
Abstract multi map based on
HashMap. |
class |
AbstractMultiHashMapListBased<KEYTYPE,VALUETYPE>
Abstract multi map based on
HashMap and
ICommonsList values. |
class |
AbstractMultiHashMapMapBased<KEYTYPE1,KEYTYPE2,VALUETYPE,MAPTYPE extends ICommonsMap<KEYTYPE2,VALUETYPE>>
Abstract multi map based on
HashMap. |
class |
AbstractMultiHashMapSetBased<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsSet<VALUETYPE>>
Abstract multi map based on
HashMap and ICommonsSet
values. |
class |
AbstractMultiLinkedHashMap<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsCollection<VALUETYPE>>
Abstract multi map based on
CommonsLinkedHashMap. |
class |
AbstractMultiLinkedHashMapListBased<KEYTYPE,VALUETYPE>
Abstract multi map based on
CommonsLinkedHashMap and
ICommonsList values. |
class |
AbstractMultiLinkedHashMapMapBased<KEYTYPE1,KEYTYPE2,VALUETYPE,MAPTYPE extends ICommonsMap<KEYTYPE2,VALUETYPE>>
Abstract multi map based on
CommonsLinkedHashMap. |
class |
AbstractMultiLinkedHashMapSetBased<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsSet<VALUETYPE>>
Abstract multi map based on
CommonsLinkedHashMap and
ICommonsSet values. |
class |
AbstractMultiTreeMap<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsCollection<VALUETYPE>>
Abstract multi map based on
CommonsTreeMap. |
class |
AbstractMultiTreeMapListBased<KEYTYPE,VALUETYPE>
Abstract multi map based on
CommonsTreeMap and
ICommonsList values. |
class |
AbstractMultiTreeMapMapBased<KEYTYPE1,KEYTYPE2,VALUETYPE,MAPTYPE extends ICommonsMap<KEYTYPE2,VALUETYPE>>
Abstract multi map based on
CommonsTreeMap. |
class |
AbstractMultiTreeMapSetBased<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsSet<VALUETYPE>>
Abstract multi map based on
CommonsTreeMap and
ICommonsSet values. |
class |
AbstractMultiWeakHashMap<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsCollection<VALUETYPE>>
Abstract multi map based on
WeakHashMap. |
class |
AbstractMultiWeakHashMapListBased<KEYTYPE,VALUETYPE>
Abstract multi map based on
WeakHashMap and
ICommonsList values. |
class |
AbstractMultiWeakHashMapSetBased<KEYTYPE,VALUETYPE,COLLTYPE extends ICommonsSet<VALUETYPE>>
Abstract multi map based on
WeakHashMap and
ICommonsSet values. |
class |
MultiConcurrentHashMapArrayListBased<KEYTYPE,VALUETYPE>
Multi map based on
ConcurrentHashMap and CommonsArrayList values. |
class |
MultiConcurrentHashMapHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
ConcurrentHashMap and
CommonsHashSet values. |
class |
MultiConcurrentHashMapLinkedHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
ConcurrentHashMap and
CommonsLinkedHashSet values. |
class |
MultiConcurrentHashMapTreeSetBased<KEYTYPE,VALUETYPE extends Comparable<? super VALUETYPE>>
Multi map based on
ConcurrentHashMap and
CommonsTreeSet values. |
class |
MultiConcurrentHashMapVectorBased<KEYTYPE,VALUETYPE>
Multi map based on
ConcurrentHashMap and CommonsVector
values. |
class |
MultiHashMapArrayListBased<KEYTYPE,VALUETYPE>
Multi map based on
HashMap and CommonsArrayList values. |
class |
MultiHashMapHashMapBased<KEYTYPE1,KEYTYPE2,VALUETYPE> |
class |
MultiHashMapHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
HashMap and CommonsHashSet
values. |
class |
MultiHashMapLinkedHashMapBased<KEYTYPE1,KEYTYPE2 extends Comparable<? super KEYTYPE2>,VALUETYPE> |
class |
MultiHashMapLinkedHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
HashMap and CommonsLinkedHashSet
values. |
class |
MultiHashMapTreeMapBased<KEYTYPE1,KEYTYPE2 extends Comparable<? super KEYTYPE2>,VALUETYPE> |
class |
MultiHashMapTreeSetBased<KEYTYPE,VALUETYPE extends Comparable<? super VALUETYPE>>
Multi map based on
HashMap and CommonsTreeSet
values. |
class |
MultiHashMapVectorBased<KEYTYPE,VALUETYPE>
Multi map based on
HashMap and CommonsVector values. |
class |
MultiHashMapWeakHashMapBased<KEYTYPE1,KEYTYPE2 extends Comparable<? super KEYTYPE2>,VALUETYPE> |
class |
MultiLinkedHashMapArrayListBased<KEYTYPE,VALUETYPE>
Multi map based on
CommonsLinkedHashMap and CommonsArrayList
values. |
class |
MultiLinkedHashMapHashMapBased<KEYTYPE1,KEYTYPE2,VALUETYPE> |
class |
MultiLinkedHashMapHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
CommonsLinkedHashMap and CommonsHashSet
values. |
class |
MultiLinkedHashMapLinkedHashMapBased<KEYTYPE1,KEYTYPE2 extends Comparable<? super KEYTYPE2>,VALUETYPE> |
class |
MultiLinkedHashMapLinkedHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
CommonsLinkedHashMap and
CommonsLinkedHashSet values. |
class |
MultiLinkedHashMapTreeMapBased<KEYTYPE1,KEYTYPE2 extends Comparable<? super KEYTYPE2>,VALUETYPE> |
class |
MultiLinkedHashMapTreeSetBased<KEYTYPE,VALUETYPE extends Comparable<? super VALUETYPE>>
Multi map based on
CommonsLinkedHashMap and
CommonsTreeSet values. |
class |
MultiLinkedHashMapVectorBased<KEYTYPE,VALUETYPE>
Multi map based on
CommonsLinkedHashMap and CommonsVector
values. |
class |
MultiLinkedHashMapWeakHashMapBased<KEYTYPE1,KEYTYPE2 extends Comparable<? super KEYTYPE2>,VALUETYPE> |
class |
MultiTreeMapArrayListBased<KEYTYPE,VALUETYPE>
Multi map based on
CommonsTreeMap
and CommonsArrayList values. |
class |
MultiTreeMapHashMapBased<KEYTYPE1,KEYTYPE2,VALUETYPE> |
class |
MultiTreeMapHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
CommonsTreeMap
and CommonsHashSet values. |
class |
MultiTreeMapLinkedHashMapBased<KEYTYPE1,KEYTYPE2 extends Comparable<? super KEYTYPE2>,VALUETYPE> |
class |
MultiTreeMapLinkedHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
CommonsTreeMap and CommonsLinkedHashSet
values. |
class |
MultiTreeMapTreeMapBased<KEYTYPE1,KEYTYPE2 extends Comparable<? super KEYTYPE2>,VALUETYPE> |
class |
MultiTreeMapTreeSetBased<KEYTYPE,VALUETYPE extends Comparable<? super VALUETYPE>>
Multi map based on
CommonsTreeMap
and CommonsTreeSet values. |
class |
MultiTreeMapVectorBased<KEYTYPE,VALUETYPE>
Multi map based on
CommonsTreeMap
and CommonsVector values. |
class |
MultiTreeMapWeakHashMapBased<KEYTYPE1,KEYTYPE2 extends Comparable<? super KEYTYPE2>,VALUETYPE> |
class |
MultiWeakHashMapArrayListBased<KEYTYPE,VALUETYPE>
Multi map based on
WeakHashMap and CommonsArrayList values. |
class |
MultiWeakHashMapHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
WeakHashMap and CommonsHashSet
values. |
class |
MultiWeakHashMapLinkedHashSetBased<KEYTYPE,VALUETYPE>
Multi map based on
WeakHashMap and
CommonsLinkedHashSet values. |
class |
MultiWeakHashMapTreeSetBased<KEYTYPE,VALUETYPE extends Comparable<? super VALUETYPE>>
Multi map based on
WeakHashMap and CommonsTreeSet
values. |
class |
MultiWeakHashMapVectorBased<KEYTYPE,VALUETYPE>
Multi map based on
WeakHashMap and CommonsVector values. |
| Modifier and Type | Class and Description |
|---|---|
class |
Pair<DATA1TYPE,DATA2TYPE>
A generic pair class.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ErrorTextProvider
Default implementation of
IErrorTextProvider with a customizable
layout. |
| Modifier and Type | Class and Description |
|---|---|
class |
ErrorList
Default implementation of
IErrorList. |
| Modifier and Type | Class and Description |
|---|---|
class |
NonBlockingProperties
The
NonBlockingProperties class represents a persistent set of
properties. |
| Modifier and Type | Method and Description |
|---|---|
static <DATATYPE extends ICloneable<DATATYPE>> |
CloneHelper.getClonedList(Iterable<DATATYPE> aList)
Get a list where each contained item is also cloned.
|
static <DATATYPE extends ICloneable<DATATYPE>> |
CloneHelper.getCloneIfNotNull(DATATYPE aObject)
Get a clone (= deep copy) of the passed value for all objects implementing
ICloneable. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
IMimeType
Interface for the structured representation of a single MIME type.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MimeType
Represents a single MIME type as the combination of the content type and the
sub-type and parameters.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
CommonsTestHelper.testGetClone(ICloneable<?> aCloneable)
Test if the implementation
ICloneable is OK. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
IMutableInteger<IMPLTYPE extends IMutableInteger<IMPLTYPE>>
Base interface for mutable numeric values
|
interface |
IMutableNumeric<IMPLTYPE extends IMutableNumeric<IMPLTYPE>>
Base interface for mutable numeric values
|
interface |
IMutableObject<IMPLTYPE extends IMutableObject<IMPLTYPE>>
Base interface for all mutable objects
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractMutableInteger<IMPLTYPE extends AbstractMutableInteger<IMPLTYPE>>
Base implementation class for
IMutableInteger transitively extending
Number class. |
class |
AbstractMutableNumeric<IMPLTYPE extends AbstractMutableNumeric<IMPLTYPE>>
Base implementation class for
IMutableNumeric extending
Number class. |
class |
MutableBigDecimal
Object wrapper around a
BigDecimal so that it can be passed a final
object but is mutable. |
class |
MutableBigInteger
Object wrapper around a
BigInteger so that it can be passed a final
object but is mutable. |
class |
MutableBoolean
Object wrapper around a boolean so that it can be passed a final object but
is mutable.
|
class |
MutableByte
Object wrapper around a byte so that it can be passed a final object but is
mutable.
|
class |
MutableChar
Object wrapper around a char so that it can be passed a final object but is
mutable.
|
class |
MutableDouble
Object wrapper around a double so that it can be passed a final object but is
mutable.
|
class |
MutableFloat
Object wrapper around a float so that it can be passed a final object but is
mutable.
|
class |
MutableInt
Object wrapper around an int so that it can be passed a final object but is
mutable.
|
class |
MutableLong
Object wrapper around a long so that it can be passed a final object but is
mutable.
|
class |
MutableShort
Object wrapper around a short so that it can be passed a final object but is
mutable.
|
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractMapBasedScope
Abstract scope implementation based on a Map containing the attribute values.
|
class |
ApplicationScope
Represents a single "application scope".
|
class |
GlobalScope
Base implementation of the
IGlobalScope interface. |
class |
RequestScope
Default implementation for non-web request scopes.
|
class |
SessionApplicationScope
Represents a single "session application scope".
|
class |
SessionScope
Default implementation of the
ISessionScope interface |
| Modifier and Type | Class and Description |
|---|---|
class |
SimpleURL
Abstraction of the string parts of a URL but much simpler (and faster) than
URL. |
class |
SMap
A special URL parameter map that is made for best inline usage.
|
class |
URLParameterList
A list of URL parameters with a sanity API.
|
| Modifier and Type | Class and Description |
|---|---|
class |
Wrapper<DATATYPE>
This is a stupid wrapper around any object.
|
Copyright © 2014–2017 Philip Helger. All rights reserved.