| Package | system.data |
| Interface | public interface MultiMap extends Map, Cloneable, Iterable, Serializable |
| Implementors | MultiValueMap |
| Method | Defined By | ||
|---|---|---|---|
![]() | clear():void
Removes all mappings from this map (optional operation). | Map | |
![]() | clone():*
Creates and returns a shallow copy of the object. | Cloneable | |
![]() | containsKey(key:*):Boolean
Returns true if this map contains a mapping for the specified key. | Map | |
![]() | containsValue(value:*):Boolean
Returns true if this map maps one or more keys to the specified value. | Map | |
![]() | get(key:*):*
Returns the value to which this map maps the specified key. | Map | |
![]() | getKeys():Array
Returns an Array of all the keys in the map. | Map | |
![]() | getValues():Array
Returns an Array of all the values in the map. | Map | |
![]() | isEmpty():Boolean
Returns true if this map contains no key-value mappings. | Map | |
![]() |
Returns the iterator reference of the object. | Iterable | |
![]() |
Returns the keys iterator of this map. | Map | |
![]() | put(key:*, value:*):*
Associates the specified value with the specified key in this map (optional operation). | Map | |
![]() |
Copies all of the mappings from the specified map to this one. | Map | |
![]() | remove(o:*):*
Removes the mapping for this key from this map if it is present (optional operation). | Map | |
![]() | size():uint
Returns the number of key-value mappings in this map. | Map | |
![]() | toSource(indent:int = 0):String
Returns the source code string representation of the object. | Serializable | |
totalSize():uint
Returns the total count of elements in all the collection in the MultiMap. | MultiMap | ||
Returns the iterator representation of all Collections register in the MultiMap, all collections represents a key. | MultiMap | ||
Returns a collection of all values associated with all the keys in this map. | MultiMap | ||
Returns an Iterator representation of all values in the MultiMap. | MultiMap | ||
| totalSize | () | method |
public function totalSize():uintReturns the total count of elements in all the collection in the MultiMap.
Returnsuint — the total count of elements in all the collection in the MultiMap.
|
| valueIterator | () | method |
public function valueIterator():IteratorReturns the iterator representation of all Collections register in the MultiMap, all collections represents a key.
ReturnsIterator — the iterator representation of all Collections register in the MultiMap, all collections represents a key.
|
| values | () | method |
public function values():CollectionReturns a collection of all values associated with all the keys in this map.
ReturnsCollection — a collection of all values associated with all the keys in this map.
|
| valuesIterator | () | method |
public function valuesIterator():IteratorReturns an Iterator representation of all values in the MultiMap.
ReturnsIterator — an Iterator representation of all values in the MultiMap.
|