Package de.hybris.platform.jalo
Interface ContextMap<KEY,VALUE>
-
- All Superinterfaces:
java.util.Map<KEY,VALUE>
public interface ContextMap<KEY,VALUE> extends java.util.Map<KEY,VALUE>This context interface has two different implementations,GlobalContextMap-
LocalContextMap
-
-
Field Summary
Fields Modifier and Type Field Description static intCONCURRENCY_LEVEL_GLOBALstatic intCONCURRENCY_LEVEL_LOCALstatic intINITIAL_CAPACITYstatic java.lang.ObjectNULLstatic java.lang.ObjectREMOVED
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<KEY>getAttributesContainingItems()booleanisAttributeHoldingItems(java.lang.Object key)java.util.Enumeration<KEY>keys()VALUEputNoItemCheck(KEY key, VALUE value)
-
-
-
Field Detail
-
REMOVED
static final java.lang.Object REMOVED
-
NULL
static final java.lang.Object NULL
-
INITIAL_CAPACITY
static final int INITIAL_CAPACITY
- See Also:
- Constant Field Values
-
CONCURRENCY_LEVEL_LOCAL
static final int CONCURRENCY_LEVEL_LOCAL
- See Also:
- Constant Field Values
-
CONCURRENCY_LEVEL_GLOBAL
static final int CONCURRENCY_LEVEL_GLOBAL
- See Also:
- Constant Field Values
-
-