| Property Getters/Setters Summary | ||
|---|---|---|
function | getCount() | |
function | get(index) | |
Returns a |
||
function | get(name) | |
Returns a |
||
| Method Summary | ||
|---|---|---|
function | add(value) | |
Reserved for internal use. |
||
function | clear() | |
function | contains(value) | |
Reserved for internal use. |
||
function | contains(name) | |
Returns true if a property with the specified name exists in the collection.
|
||
function | get(index) | |
Reserved for internal use. |
||
function | indexOf(value) | |
Reserved for internal use. |
||
function | indexOf(name) | |
Gets the index of a property by name.
|
||
function | iterator() | |
function | remove(name) | |
Removes a property with the specified name from the collection.
|
||
function | removeAt(index) | |
Removes a property at the specified index.
|
||
function getCount()
function get(name)
Returns null if a property with the specified name is not found.
name - The case-insensitive name of the property to retrieve.function get(index)
index - Zero-based index of the function contains(name)
name: String - The case-insensitive name of the property.function indexOf(name)
name: String - The case-insensitive name of the property.function remove(name)
name: String - The case-insensitive name of the property.function removeAt(index)
index: Number - The zero based index.function clear()
function iterator()
function get(index)
function contains(value)
function add(value)
function indexOf(value)