| Modifier and Type | Method and Description |
|---|---|
static ICommonsMap<URI,ChangeLog> |
ChangeLogSerializer.readAllChangeLogs() |
static ICommonsMap<URI,ChangeLog> |
ChangeLogSerializer.readAllChangeLogs(ClassLoader aClassLoader) |
static ICommonsMap<URI,ChangeLog> |
ChangeLogSerializer.readAllChangeLogs(IChangeLogSerializerCallback aErrorCallback) |
static ICommonsMap<URI,ChangeLog> |
ChangeLogSerializer.readAllChangeLogs(IChangeLogSerializerCallback aErrorCallback,
ClassLoader aClassLoader) |
static ICommonsMap<URI,ChangeLog> |
ChangeLogSerializer.readAllChangeLogs(IHasClassLoader aClassLoaderProvider) |
| Modifier and Type | Method and Description |
|---|---|
static <KEY,VALUE> |
CollectionHelper.getCombinedMap(Map<KEY,VALUE> aMap1,
Map<KEY,VALUE> aMap2)
Create a map that contains the combination of the other 2 maps.
|
static <KEY,VALUE> |
CollectionHelper.getFilteredMap(ICommonsMap<KEY,VALUE> aValues,
Collection<? extends KEY> aKeys)
Get a map consisting only of a set of specified keys.
|
static <KEYTYPE extends Comparable<? super KEYTYPE>,VALUETYPE> |
CollectionHelper.getSortedByKey(Map<KEYTYPE,VALUETYPE> aMap)
Get a map sorted by aIter's keys.
|
static <KEYTYPE,VALUETYPE> |
CollectionHelper.getSortedByKey(Map<KEYTYPE,VALUETYPE> aMap,
Comparator<? super KEYTYPE> aKeyComparator)
Get a map sorted by its keys.
|
static <KEYTYPE,VALUETYPE extends Comparable<? super VALUETYPE>> |
CollectionHelper.getSortedByValue(Map<KEYTYPE,VALUETYPE> aMap)
Get a map sorted by its values.
|
static <KEYTYPE,VALUETYPE> |
CollectionHelper.getSortedByValue(Map<KEYTYPE,VALUETYPE> aMap,
Comparator<? super VALUETYPE> aValueComparator)
Get a map sorted by aIter's values.
|
| Modifier and Type | Method and Description |
|---|---|
static <KEY,VALUE> |
CollectionHelper.getFilteredMap(ICommonsMap<KEY,VALUE> aValues,
Collection<? extends KEY> aKeys)
Get a map consisting only of a set of specified keys.
|
| Modifier and Type | Field and Description |
|---|---|
protected ICommonsMap<KEYTYPE,VALUETYPE> |
MapBasedReadOnlyAttributeContainer.m_aAttrs
Main attribute storage.
|
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<KEYTYPE,VALUETYPE> |
MapBasedReadOnlyAttributeContainer.getAllAttributes() |
default ICommonsMap<KEYTYPE,VALUETYPE> |
IHasAttributes.getAllAttributes() |
ICommonsMap<KEYTYPE,VALUETYPE> |
IAttributeContainer.getAllAttributes() |
| Constructor and Description |
|---|
MapBasedAttributeContainer(boolean bDummy,
ICommonsMap<KEYTYPE,VALUETYPE> aAttrMap) |
MapBasedAttributeContainerAny(boolean bDummy,
ICommonsMap<KEYTYPE,Object> aAttrMap) |
MapBasedReadOnlyAttributeContainer(boolean bDummy,
ICommonsMap<KEYTYPE,VALUETYPE> aAttrMap)
Constructor to use a custom map for the attribute container
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
ICommonsNavigableMap<KEYTYPE,VALUETYPE> |
interface |
ICommonsOrderedMap<KEYTYPE,VALUETYPE> |
interface |
ICommonsSortedMap<KEYTYPE,VALUETYPE> |
| Modifier and Type | Class and Description |
|---|---|
class |
CommonsConcurrentHashMap<KEYTYPE,VALUETYPE> |
class |
CommonsEnumMap<KEYTYPE extends Enum<KEYTYPE>,VALUETYPE> |
class |
CommonsHashMap<KEYTYPE,VALUETYPE> |
class |
CommonsLinkedHashMap<KEYTYPE,VALUETYPE> |
class |
CommonsTreeMap<KEYTYPE,VALUETYPE> |
class |
CommonsWeakHashMap<KEYTYPE,VALUETYPE> |
| Modifier and Type | Method and Description |
|---|---|
default ICommonsMap<KEYTYPE,VALUETYPE> |
ICommonsMap.getSortedByKey(Comparator<? super KEYTYPE> aKeyComparator)
Get the map sorted by its keys.
|
default ICommonsMap<KEYTYPE,VALUETYPE> |
ICommonsMap.getSortedByValue(Comparator<? super VALUETYPE> aValueComparator)
Get the map sorted by its values.
|
default ICommonsMap<VALUETYPE,KEYTYPE> |
ICommonsMap.getSwappedKeyValues()
Get a map where keys and values are exchanged.
|
| Modifier and Type | Class and Description |
|---|---|
class |
SingleElementMap<KEYTYPE,VALUETYPE>
ICommonsMap implementation that can only keep 0 or 1 element. |
| Modifier and Type | Class and Description |
|---|---|
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.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
IMultiMap<KEYTYPE,VALUETYPE,COLLTYPE extends Collection<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>
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 Collection<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 Collection<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>
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 Collection<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>
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 Collection<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>
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 Collection<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 | Method and Description |
|---|---|
protected abstract ICommonsMap<KEYTYPE2,VALUETYPE> |
AbstractMultiTreeMapMapBased.createNewInnerMap() |
protected abstract ICommonsMap<KEYTYPE2,VALUETYPE> |
AbstractMultiLinkedHashMapMapBased.createNewInnerMap() |
protected abstract ICommonsMap<KEYTYPE2,VALUETYPE> |
AbstractMultiHashMapMapBased.createNewInnerMap() |
ICommonsMap<KEYTYPE2,VALUETYPE> |
AbstractMultiTreeMapMapBased.getOrCreate(KEYTYPE1 aKey) |
ICommonsMap<KEYTYPE2,VALUETYPE> |
AbstractMultiLinkedHashMapMapBased.getOrCreate(KEYTYPE1 aKey) |
ICommonsMap<KEYTYPE2,VALUETYPE> |
AbstractMultiHashMapMapBased.getOrCreate(KEYTYPE1 aKey) |
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<IReadableResource,SizeInt> |
ImageDataManager.getAllCachedSizes() |
| Modifier and Type | Class and Description |
|---|---|
class |
NonBlockingProperties
The
NonBlockingProperties class represents a persistent set of
properties. |
| Modifier and Type | Method and Description |
|---|---|
static ICommonsMap<Locale,String> |
LocaleHelper.getAllLocaleDisplayNames(Locale aContentLocale)
Get all possible locale names in the passed locale
|
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<EMicroEvent,ICommonsSet<IMicroEventTarget>> |
IMicroNode.getAllEventTargets() |
ICommonsMap<EMicroEvent,ICommonsSet<IMicroEventTarget>> |
AbstractMicroNode.getAllEventTargets() |
| Modifier and Type | Method and Description |
|---|---|
static ICommonsMap<String,String> |
XMLMapHandler.readMap(IHasInputStream aISP) |
static ICommonsMap<String,String> |
XMLMapHandler.readMap(InputStream aIS)
Read a mapping from the passed input stream.
|
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<String,IApplicationScope> |
IGlobalScope.getAllApplicationScopes() |
ICommonsMap<String,IApplicationScope> |
GlobalScope.getAllApplicationScopes() |
ICommonsMap<String,IScopeRenewalAware> |
IScope.getAllScopeRenewalAwareAttributes() |
ICommonsMap<String,IScopeRenewalAware> |
AbstractMapBasedScope.getAllScopeRenewalAwareAttributes() |
ICommonsMap<String,ISessionApplicationScope> |
SessionScope.getAllSessionApplicationScopes() |
ICommonsMap<String,ISessionApplicationScope> |
ISessionScope.getAllSessionApplicationScopes() |
| Modifier and Type | Method and Description |
|---|---|
static ICommonsMap<String,String> |
SystemProperties.getAllProperties() |
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<Locale,String> |
IMultilingualText.getAllTexts() |
ICommonsMap<Locale,String> |
AbstractReadOnlyMapBasedMultilingualText.getAllTexts() |
protected ICommonsMap<Locale,String> |
AbstractReadOnlyMapBasedMultilingualText.internalGetMap() |
| Constructor and Description |
|---|
AbstractMapBasedMultilingualText(ICommonsMap<Locale,String> aMapToUse)
Protected constructor that specifies the underlying
Map to use. |
AbstractReadOnlyMapBasedMultilingualText(ICommonsMap<Locale,String> aMapToUse)
Protected constructor that specifies the underlying
Map to use. |
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<String,String> |
XMLResourceBundle.getAllValues() |
| Constructor and Description |
|---|
AbstractTreeItemWithUniqueIDFactory(ICommonsMap<KEYTYPE,ITEMTYPE> aItemStore) |
| Modifier and Type | Class and Description |
|---|---|
class |
SMap
A special URL parameter map that is made for best inline usage.
|
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<String,ICommonsList<String>> |
WSClientConfig.getAllHTTPHeaders() |
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<String,String> |
SingleElementNamespaceContext.getPrefixToNamespaceURIMap() |
ICommonsMap<String,String> |
IIterableNamespaceContext.getPrefixToNamespaceURIMap()
Get all contained mappings.
|
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<EXMLParserFeature,Boolean> |
SAXReaderSettings.getAllFeatureValues() |
static ICommonsMap<EXMLParserFeature,Boolean> |
SAXReaderDefaultSettings.getAllFeatureValues() |
ICommonsMap<EXMLParserFeature,Boolean> |
IBaseXMLReaderSettings.getAllFeatureValues() |
ICommonsMap<EXMLParserFeature,Boolean> |
DOMReaderSettings.getAllFeatureValues() |
ICommonsMap<EXMLParserProperty,Object> |
SAXReaderSettings.getAllPropertyValues() |
static ICommonsMap<EXMLParserProperty,Object> |
SAXReaderDefaultSettings.getAllPropertyValues() |
ICommonsMap<EXMLParserProperty,Object> |
IBaseXMLReaderSettings.getAllPropertyValues() |
ICommonsMap<EXMLParserProperty,Object> |
DOMReaderSettings.getAllPropertyValues() |
static ICommonsMap<EXMLParserProperty,Object> |
DOMReaderDefaultSettings.getAllPropertyValues() |
| Modifier and Type | Method and Description |
|---|---|
ICommonsMap<QName,?> |
MapBasedXPathVariableResolverQName.getAllVariables() |
ICommonsMap<String,?> |
MapBasedXPathVariableResolver.getAllVariables() |
Copyright © 2014–2016 Philip Helger. All rights reserved.