| Package | system.data.maps |
| Class | public class MapEntry |
| Inheritance | MapEntry Object |
| Implements | Cloneable, Entry |
| Subclasses | TrieEntry |
| Property | Defined By | ||
|---|---|---|---|
| key : *
Indicates the key corresponding to this entry. | MapEntry | ||
| value : *
Indicates the value corresponding to this entry. | MapEntry | ||
| Method | Defined By | ||
|---|---|---|---|
MapEntry(key:* = null, value:* = null)
Creates a new MapEntry instance. | MapEntry | ||
clone():*
Creates and returns a shallow copy of the object. | MapEntry | ||
toString():String
Returns the String representation of the object. | MapEntry | ||
| key | property |
key:*Indicates the key corresponding to this entry.
public function get key():* public function set key(value:any):void| value | property |
value:*Indicates the value corresponding to this entry.
public function get value():* public function set value(value:any):void| MapEntry | () | Constructor |
public function MapEntry(key:* = null, value:* = null)Creates a new MapEntry instance.
Parameterskey:* (default = null) — The key representation of the entry.
| |
value:* (default = null) — The value representation of the entry.
|
| clone | () | method |
public function clone():*Creates and returns a shallow copy of the object.
Returns* — A new object that is a shallow copy of this instance.
|
| toString | () | method |
public function toString():StringReturns the String representation of the object.
ReturnsString — the String representation of the object.
|