E G P S

E

enterScope() - Method in class ScopedMap
sets the ScopedMap to a new scope nested inside the previous one; the nesting level increases by one
exitScope() - Method in class ScopedMap
exits from the current scope back to the containing one; the nesting level, which must have been positive, decreases by one

G

get(K) - Method in class ScopedMap
gets the value corresponding to the key, at the innermost scope for which there is one; if there is none, returns null
getNestingLevel() - Method in class ScopedMap
returns the current nesting level

P

put(K, V) - Method in class ScopedMap
puts the key/value pair in at the current scope; if the key is already in at the current nesting level, the new value replaces the old one; neither the key nor the value may be null

S

ScopedMap<K,V> - Class in <Unnamed>
A ScopedMap is similar to a Map, but with nested scopes.
ScopedMap() - Constructor for class ScopedMap
makes a ScopedMap that maps no keys to values and is set to the global scope (nesting level 0)

E G P S