K - Key class of the map.V - Value class of the map.public final class ScopedMap<K,V> extends java.lang.Object implements ScopeSubscriber, java.util.Map<K,V>
Map which is scope aware.
This enables the user to store in a map and retrieve these values without taking care about scope changes. The values are always scope aware.
All keys are associated with a stack. The topmost element of the stack is the current value.
| Constructor and Description |
|---|
ScopedMap(ScopeObserver scopeObserver)
Constructs a new object.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear()
Removes all mappings from this map (optional operation).
|
void |
close()
Unsubscribe this scoped container from the
ScopePublisher. |
boolean |
containsKey(java.lang.Object key)
Returns true if this map contains a mapping for the specified
key.
|
boolean |
containsValue(java.lang.Object value)
Returns true if this map maps one or more keys to the
specified value.
|
void |
enterScope(Scope previous,
Scope next)
The application has entered the
next scope and the
previous scope is no more the current scope. |
java.util.Set<java.util.Map.Entry<K,V>> |
entrySet()
Returns a set view of the mappings contained in this map.
|
boolean |
equals(java.lang.Object o)
Compares the specified object with this map for equality.
|
void |
exitScope(Scope previous,
Scope next)
The application has left the
previous scope and the
next scope is valid. |
V |
get(java.lang.Object key)
Returns the value to which this map maps the specified key.
|
int |
hashCode()
Returns the hash code value for this map.
|
boolean |
isEmpty()
Returns true if this map contains no key-value mappings.
|
java.util.Set<K> |
keySet()
Returns a set view of the keys contained in this map.
|
V |
put(K key,
V value)
Associates the specified value with the specified key in this map
(optional operation).
|
void |
putAll(java.util.Map<? extends K,? extends V> t)
Copies all of the mappings from the specified map to this map
(optional operation).
|
V |
remove(java.lang.Object key)
Removes the mapping for this key from this map if it is present
(optional operation).
|
int |
size()
Returns the number of key-value mappings in this map.
|
java.util.Collection<V> |
values()
Returns a collection view of the values contained in this map.
|
public ScopedMap(ScopeObserver scopeObserver)
scopeObserver - The current scope observer.public void close()
ScopePublisher.public void enterScope(Scope previous, Scope next)
next scope and the
previous scope is no more the current scope.enterScope in interface ScopeSubscriberprevious - the old scope.next - The new scope.public void exitScope(Scope previous, Scope next)
previous scope and the
next scope is valid.exitScope in interface ScopeSubscriberprevious - the old scope.next - the new scope.public int size()
public boolean isEmpty()
public boolean containsKey(java.lang.Object key)
public boolean containsValue(java.lang.Object value)
public V get(java.lang.Object key)
public V put(K key, V value)
put in interface java.util.Map<K,V>key - key with which the specified value is to be associated.value - value to be associated with the specified key.public V remove(java.lang.Object key)
public void putAll(java.util.Map<? extends K,? extends V> t)
public void clear()
public java.util.Set<K> keySet()
public java.util.Collection<V> values()
public java.util.Set<java.util.Map.Entry<K,V>> entrySet()
public boolean equals(java.lang.Object o)