Packagecom.ericfeminella.collections
Classpublic class HashMapEntry
ImplementsIHashMapEntry

Provides a strongly typed implementation of a key/value pairs

See also

IHashMapEntry
IMap


Public Properties
 PropertyDefined by
  key : *
Retrieves the value of the key property of the IHashMapEntry implementation.
HashMapEntry
  value : *
Retrieves the value of the value property of an IHashMapEntry implementation.
HashMapEntry
Protected Properties
 PropertyDefined by
  _key : *
HashMapEntry
  _value : *
HashMapEntry
Public Methods
 MethodDefined by
  
HashMapEntry(key:*, value:*)
HashMapEntry constructor accepts values for the key and value properties of an IHashMapEntry
HashMapEntry
Property detail
_keyproperty
protected var _key:*
keyproperty 
key:*  [read-write]

Retrieves the value of the key property of the IHashMapEntry implementation.

Implementation
    public function get key():*
    public function set key(value:*):void
_valueproperty 
protected var _value:*
valueproperty 
value:*  [read-write]

Retrieves the value of the value property of an IHashMapEntry implementation.

Implementation
    public function get value():*
    public function set value(value:*):void
Constructor detail
HashMapEntry()constructor
public function HashMapEntry(key:*, value:*)

HashMapEntry constructor accepts values for the key and value properties of an IHashMapEntry

Parameters
key:* — to assign to the key property
 
value:* — to assign to the value property