| Package | ch.capi.data |
| Interface | public interface IMap |
| Implementors | DictionnaryMap |
| Method | Defined by | ||
|---|---|---|---|
|
clear():void
Removes all of the mappings from this map.
| IMap | ||
|
containsKey(key:*):Boolean
Returns
true if this map contains a mapping for the specified key. | IMap | ||
|
containsValue(value:*):Boolean
Returns true if this map maps one or more keys to the specified value.
| IMap | ||
|
getValue(key:*):*
Retrieves the value mapped to the specified key or
null if there is no mapping for
the key. | IMap | ||
|
isEmpty():Boolean
Returns true if the
IMap contains no key-value mappings. | IMap | ||
|
keys():Array
Retrieves all the keys contained into the
IMap. | IMap | ||
|
put(key:*, value:*):*
Associates the specified value with the specified key in the
IMap. | IMap | ||
|
Retrieves all the key/value from the source
IMap and put them
in the current IMap. | IMap | ||
|
remove(key:*):*
Removes the mapping for a key from the
IMap if it is present. | IMap | ||
|
size():uint
Retrieves the number of key-value mappings into the
IMap. | IMap | ||
|
values():Array
Retrieves all the values contained into the
IMap. | IMap | ||
| clear | () | method |
public function clear():voidRemoves all of the mappings from this map.
| containsKey | () | method |
public function containsKey(key:*):Boolean
Returns true if this map contains a mapping for the specified key.
key:* — key The key.
|
Boolean — true if the specified key is contained into the IMap.
|
| containsValue | () | method |
public function containsValue(value:*):BooleanReturns true if this map maps one or more keys to the specified value.
Parametersvalue:* — The value.
|
Boolean — true if the specified value is contained into the IMap.
|
| getValue | () | method |
public function getValue(key:*):*
Retrieves the value mapped to the specified key or null if there is no mapping for
the key.
key:* — The key.
|
* — The object mapped to the specified key or null.
|
| isEmpty | () | method |
public function isEmpty():Boolean
Returns true if the IMap contains no key-value mappings.
Boolean — true if there is no mapping.
|
| keys | () | method |
public function keys():Array
Retrieves all the keys contained into the IMap.
Array — An Array containing all the keys.
|
| put | () | method |
public function put(key:*, value:*):*
Associates the specified value with the specified key in the IMap.
key:* — The key.
|
|
value:* — The value.
|
* — The previous value mapped to the key or null.
|
| putAll | () | method |
public function putAll(source:IMap):void
Retrieves all the key/value from the source IMap and put them
in the current IMap.
source:IMap — The source IMap.
|
| remove | () | method |
public function remove(key:*):*
Removes the mapping for a key from the IMap if it is present.
key:* — The key to remove.
|
* — The mapped value for this key.
|
| size | () | method |
public function size():uint
Retrieves the number of key-value mappings into the IMap.
uint — The number of key-value mappings.
|
| values | () | method |
public function values():Array
Retrieves all the values contained into the IMap.
Array — An Array containing all the values.
|