All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class collections.CheckedMap

java.lang.Object
   |
   +----collections.CheckedCollection
           |
           +----collections.CheckedMap

public class CheckedMap
extends CheckedCollection
implements UpdatableMap
CheckedMap supports standard update operations on maps.


Constructor Index

 o CheckedMap(UpdatableMap)
Wrap Map m inside a checker

Method Index

 o aKeyOf(Object)
Checks collections.Map.aKeyOf according to its specification
 o at(Object)
Checks collections.Map.at according to its specification
 o canIncludeKey(Object)
Checks collections.Map.canIncludeKey according to its specification
 o checkPut(Map, Map, Object, Object, boolean)
Helper for checking put*
 o checkRemoveAt(Map, Map, Object, boolean)
Helper for checking remov*
 o clone()
Make a Checked clone of underlying collection
 o includesAt(Object, Object)
Checks collections.Map.includesAt according to its specification
 o includesKey(Object)
Checks collections.Map.includesKey according to its specification
 o keys()
Checks collections.Map.keys according to its specification
 o prev()
return casted version of CheckedCollection.prev.
 o putAt(Object, Object)
Checks collections.UpdatableMap.putAt according to its specification
 o puttingAt(Object, Object)
Checks collections.Map.puttingAt.
 o removeAt(Object)
Checks collections.UpdatableMap.removeAt according to its specification
 o removingAt(Object)
Checks collections.Map.removingAt
 o replaceElement(Object, Object, Object)
Checks collections.UpdatableMap.replaceElement according to its specification
 o thys()
return casted version of CheckedCollection.thys.

Constructors

 o CheckedMap
 public CheckedMap(UpdatableMap m)
Wrap Map m inside a checker

Methods

 o clone
 protected Object clone() throws CloneNotSupportedException
Make a Checked clone of underlying collection

Overrides:
clone in class CheckedCollection
 o thys
 public UpdatableMap thys()
return casted version of CheckedCollection.thys.

 o prev
 public UpdatableMap prev()
return casted version of CheckedCollection.prev.

 o canIncludeKey
 public boolean canIncludeKey(Object key)
Checks collections.Map.canIncludeKey according to its specification

See Also:
canIncludeKey
 o includesKey
 public synchronized boolean includesKey(Object key)
Checks collections.Map.includesKey according to its specification

See Also:
includesKey
 o includesAt
 public synchronized boolean includesAt(Object key,
                                        Object value)
Checks collections.Map.includesAt according to its specification

See Also:
includesAt
 o keys
 public synchronized CollectionEnumeration keys()
Checks collections.Map.keys according to its specification

See Also:
keys
 o at
 public synchronized Object at(Object key) throws NoSuchElementException
Checks collections.Map.at according to its specification

See Also:
at
 o aKeyOf
 public synchronized Object aKeyOf(Object element)
Checks collections.Map.aKeyOf according to its specification

See Also:
aKeyOf
 o putAt
 public synchronized void putAt(Object key,
                                Object element) throws IllegalElementException
Checks collections.UpdatableMap.putAt according to its specification

See Also:
putAt
 o puttingAt
 public synchronized Map puttingAt(Object key,
                                   Object element) throws IllegalElementException
Checks collections.Map.puttingAt.

See Also:
puttingAt
 o removeAt
 public synchronized void removeAt(Object key)
Checks collections.UpdatableMap.removeAt according to its specification

See Also:
removeAt
 o removingAt
 public synchronized Map removingAt(Object key)
Checks collections.Map.removingAt

See Also:
removingAt
 o replaceElement
 public synchronized void replaceElement(Object key,
                                         Object oldElement,
                                         Object newElement) throws IllegalElementException
Checks collections.UpdatableMap.replaceElement according to its specification

See Also:
replaceElement
 o checkPut
 protected void checkPut(Map nc,
                         Map oc,
                         Object key,
                         Object element,
                         boolean verchk)
Helper for checking put*

 o checkRemoveAt
 protected void checkRemoveAt(Map nc,
                              Map oc,
                              Object key,
                              boolean verchk)
Helper for checking remov*


All Packages  Class Hierarchy  This Package  Previous  Next  Index