|
|
LOGICAL ContainsKey (Class)
|
/* Returns true if this map contains a mapping for the specified key. */
|
|
|
LOGICAL ContainsKey (Object)
|
/* Returns true if this map contains a mapping for the specified key. */
|
|
|
LOGICAL ContainsValue (Class)
|
/* Returns true if this map maps one or more keys to the specified value.*/
|
|
|
LOGICAL ContainsValue (Object)
|
/* Returns true if this map maps one or more keys to the specified value.*/
|
|
|
Progress.Lang.Class Get (Class)
|
/* Returns the value to which this map maps the specified key.*/
|
|
|
Progress.Lang.Object Get (Object)
|
/* Returns the value to which this map maps the specified key.*/
|
|
|
Progress.Lang.Class Put (Class, Class)
|
/* Associates the specified value with the specified key in this map (optional operation).*/
|
|
|
Progress.Lang.Object Put (Object, Object)
|
|
|
|
Progress.Lang.Class Remove (Class)
|
/* Removes the mapping for this key from this map if it is present (optional operation).*/
|
|
|
Progress.Lang.Object Remove (Object)
|
/* Removes the mapping for this key from this map if it is present (optional operation).*/
|