A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |
set(element:any) — method, interface org.as3collections.IListIterator |
|
Replaces the last element returned by next or previous with the specified element (optional operation). |
set(key:any, value:any) — method, interface org.as3collections.IListMapIterator |
|
Replaces the last mapping returned by next or previous with the specified mapping (optional operation). |
set(element:any) — method, class org.as3collections.iterators.ListIterator |
|
Replaces the last element returned by next or previous with the specified element (optional operation). |
set(key:any, value:any) — method, class org.as3collections.iterators.ListMapIterator |
|
Replaces the last mapping returned by next or previous with the specified mapping. |
set(element:any) — method, class org.as3collections.iterators.ReadOnlyListIterator |
|
This implementation always throws an UnsupportedOperationError. |
setAt(index:int, element:any) — method, class org.as3collections.AbstractList |
|
Replaces the element at the specified position in this list with the specified element (optional operation). |
setAt(index:int, element:any) — method, interface org.as3collections.IList |
|
Replaces the element at the specified position in this list with the specified element (optional operation). |
setAt(index:int, element:any) — method, class org.as3collections.lists.ArrayList |
|
Replaces the element at the specified position in this list with the specified element. |
setAt(index:int, element:any) — method, class org.as3collections.lists.ReadOnlyArrayList |
|
This implementation always throws an UnsupportedOperationError. |
setAt(index:int, element:any) — method, class org.as3collections.lists.SortedArrayList |
|
Replaces the element at the specified position in this list with the specified element. |
setAt(index:int, element:any) — method, class org.as3collections.lists.TypedList |
|
The element is validated to be forwarded to wrappedList.setAt. |
setAt(index:int, element:any) — method, class org.as3collections.lists.UniqueList |
|
If wrappedList.contains(element) returns true then returns false. |
setKeyAt(index:int, key:any) — method, class org.as3collections.AbstractListMap |
|
Replaces the key at the specified position in this map with the specified key (optional operation). |
setKeyAt(index:int, key:any) — method, interface org.as3collections.IListMap |
|
Replaces the key at the specified position in this map with the specified key (optional operation). |
setKeyAt(index:int, key:any) — method, class org.as3collections.maps.ArrayListMap |
|
Replaces the key at the specified position in this map with the specified key (optional operation). |
setKeyAt(index:int, key:any) — method, class org.as3collections.maps.SortedArrayListMap |
|
Replaces the key at the specified position in this map with the specified key (optional operation). |
setKeyAt(index:int, key:any) — method, class org.as3collections.maps.TypedListMap |
|
The key is validated to be forwarded to wrappedMap.setKeyAt. |
setValueAt(index:int, value:any) — method, class org.as3collections.AbstractListMap |
|
Replaces the value at the specified position in this map with the specified value (optional operation). |
setValueAt(index:int, value:any) — method, interface org.as3collections.IListMap |
|
Replaces the value at the specified position in this map with the specified value (optional operation). |
setValueAt(index:int, value:any) — method, class org.as3collections.maps.ArrayListMap |
|
Replaces the value at the specified position in this map with the specified value (optional operation). |
setValueAt(index:int, value:any) — method, class org.as3collections.maps.SortedArrayListMap |
|
Replaces the value at the specified position in this map with the specified value (optional operation). |
setValueAt(index:int, value:any) — method, class org.as3collections.maps.TypedListMap |
|
The value is validated to be forwarded to wrappedMap.setValueAt. |
shuffle(collection:org.as3collections:ICollection) — Static Method , class org.as3collections.utils.CollectionUtil |
|
Shuffles the position of the elements of the given collection. |
size() — method, class org.as3collections.AbstractArrayCollection |
|
Returns the number of elements in this collection. |
size() — method, class org.as3collections.AbstractHashMap |
|
Returns the number of key-value mappings in this map. |
size() — method, class org.as3collections.AbstractListMap |
|
Returns the number of key-value mappings in this map. |
size() — method, interface org.as3collections.ICollection |
|
Returns the number of elements in this collection. |
size() — method, interface org.as3collections.IMap |
|
Returns the number of key-value mappings in this map. |
size() — method, class org.as3collections.TypedCollection |
|
Forwards the call to wrappedCollection.size. |
size() — method, class org.as3collections.UniqueCollection |
|
Forwards the call to wrappedCollection.size. |
size() — method, class org.as3collections.maps.TypedMap |
|
Forwards the call to wrappedMap.size. |
sort(compare:Function, options:uint) — method, class org.as3collections.lists.SortedArrayList |
|
Sorts the objects within this class. |
sort(compare:Function, options:uint) — method, class org.as3collections.lists.TypedSortedList |
|
Forwards the call to wrappedList.sort. |
sort(compare:Function, options:uint) — method, class org.as3collections.lists.UniqueSortedList |
|
Forwards the call to wrappedList.sort. |
sort(compare:Function, options:uint) — method, class org.as3collections.maps.SortedArrayListMap |
|
Sorts the objects within this class. |
sort(compare:Function, options:uint) — method, class org.as3collections.maps.TypedSortedMap |
|
Forwards the call to wrappedMap.sort. |
sort(compare:Function, options:uint) — method, class org.as3collections.queues.SortedQueue |
|
Sorts the objects within this class. |
sortAlphabetically(collection:org.as3collections:ICollection, comparison:org.as3coreaddendum.system.comparators:AlphabeticalComparison) — Static Method , class org.as3collections.utils.CollectionUtil |
|
Sorts the collection of String objects alphabetically. |
sortAlphabeticallyByObjectProperty(collection:org.as3collections:ICollection, property:String, comparison:org.as3coreaddendum.system.comparators:AlphabeticalComparison) — Static Method , class org.as3collections.utils.CollectionUtil |
|
Sorts the collection of objects alphabetically through the object's property. |
sortAscending(collection:org.as3collections:ICollection) — Static Method , class org.as3collections.utils.CollectionUtil |
|
Sorts the collection of Number objects ascending. |
sortAscendingByObjectProperty(collection:org.as3collections:ICollection, property:String) — Static Method , class org.as3collections.utils.CollectionUtil |
|
Sorts the collection of objects ascending through the object's property (must be a numeric value). |
sortBy — Property, interface org.as3collections.ISortedMap |
|
Defines whether the map should be sorted by its keys or values. |
sortBy — Property, class org.as3collections.maps.SortedArrayListMap |
|
Defines whether the map should be sorted by its keys or values. |
sortBy — Property, class org.as3collections.maps.TypedSortedMap |
|
Defines whether the wrappedMap should be sorted by its keys or values. |
sortDescending(collection:org.as3collections:ICollection) — Static Method , class org.as3collections.utils.CollectionUtil |
|
Sorts the array of Number objects descending. |
sortDescendingByObjectProperty(collection:org.as3collections:ICollection, property:String) — Static Method , class org.as3collections.utils.CollectionUtil |
|
Sorts the array of objects descending through the object's property (must be a numeric value). |
SortedArrayList — class, package org.as3collections.lists |
|
A list that provides a total ordering on its elements. |
SortedArrayList(source:Array, comparator:org.as3coreaddendum.system:IComparator, options:uint) — Constructor, class org.as3collections.lists.SortedArrayList |
|
Constructor, creates a new SortedArrayList object. |
SortedArrayListMap — class, package org.as3collections.maps |
|
A map that provides a total ordering on its mappings. |
SortedArrayListMap(source:org.as3collections:IMap, comparator:org.as3coreaddendum.system:IComparator, options:uint) — Constructor, class org.as3collections.maps.SortedArrayListMap |
|
Constructor, creates a new SortedArrayListMap object. |
SortedQueue — class, package org.as3collections.queues |
|
A queue that provides a total ordering on its elements. |
SortedQueue(source:Array, comparator:org.as3coreaddendum.system:IComparator, options:uint) — Constructor, class org.as3collections.queues.SortedQueue |
|
Constructor, creates a new SortedQueue object. |
SortMapBy — class, package org.as3collections |
|
The enumeration class that defines the acceptable values for sort maps by keys or values. |
SortMapBy(name:String, ordinal:int) — Constructor, class org.as3collections.SortMapBy |
|
Constructor, creates a new SortMapBy object. |
sortOn(fieldName:any, options:any) — method, interface org.as3collections.ISortedList |
|
Sorts the elements in an array according to one or more fields in the array. |
sortOn(fieldName:any, options:any) — method, interface org.as3collections.ISortedMap |
|
Sorts the elements in an array according to one or more fields in the array. |
sortOn(fieldName:any, options:any) — method, interface org.as3collections.ISortedQueue |
|
Sorts the elements in an array according to one or more fields in the array. |
sortOn(fieldName:any, options:any) — method, class org.as3collections.lists.SortedArrayList |
|
Sorts the elements in an array according to one or more fields in the array. |
sortOn(fieldName:any, options:any) — method, class org.as3collections.lists.TypedSortedList |
|
Forwards the call to wrappedList.sortOn. |
sortOn(fieldName:any, options:any) — method, class org.as3collections.lists.UniqueSortedList |
|
Forwards the call to wrappedList.sortOn. |
sortOn(fieldName:any, options:any) — method, class org.as3collections.maps.SortedArrayListMap |
|
Sorts the elements in an array according to one or more fields in the array. |
sortOn(fieldName:any, options:any) — method, class org.as3collections.maps.TypedSortedMap |
|
Forwards the call to wrappedMap.sortOn. |
sortOn(fieldName:any, options:any) — method, class org.as3collections.queues.SortedQueue |
|
Sorts the elements in an array according to one or more fields in the array. |
subList(fromIndex:int, toIndex:int) — method, class org.as3collections.AbstractList |
|
Returns a new list that is a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive. |
subList(fromIndex:int, toIndex:int) — method, interface org.as3collections.IList |
|
Returns a new list that is a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive. |
subList(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.ArrayList |
|
Returns a new ArrayList that is a view of the portion of this ArrayList between the specified fromIndex, inclusive, and toIndex, exclusive. |
subList(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.ReadOnlyArrayList |
|
Returns a new ReadOnlyArrayList that is a view of the portion of this ReadOnlyArrayList between the specified fromIndex, inclusive, and toIndex, exclusive. |
subList(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.SortedArrayList |
|
Returns a new SortedArrayList that is a view of the portion of this SortedArrayList between the specified fromIndex, inclusive, and toIndex, exclusive. |
subList(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.TypedList |
|
Returns a new TypedList(wrappedList.subList(fromIndex, toIndex)). |
subList(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.TypedSortedList |
|
Forwards the call to wrappedList.subList. |
subList(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.UniqueList |
|
Returns a new UniqueList(wrappedList.subList(fromIndex, toIndex)). |
subList(fromIndex:int, toIndex:int) — method, class org.as3collections.lists.UniqueSortedList |
|
Forwards the call to wrappedList.subList. |
subMap(fromIndex:int, toIndex:int) — method, class org.as3collections.AbstractListMap |
|
Returns a new map that is a view of the portion of this map between the specified fromIndex, inclusive, and toIndex, exclusive. |
subMap(fromIndex:int, toIndex:int) — method, interface org.as3collections.IListMap |
|
Returns a new IListMap object that is a view of the portion of this map between the specified fromIndex, inclusive, and toIndex, exclusive. |
subMap(fromIndex:int, toIndex:int) — method, class org.as3collections.maps.ArrayListMap |
|
Returns a new map that is a view of the portion of this map between the specified fromIndex, inclusive, and toIndex, exclusive. |
subMap(fromIndex:int, toIndex:int) — method, class org.as3collections.maps.SortedArrayListMap |
|
inheritDoc
|
subMap(fromIndex:int, toIndex:int) — method, class org.as3collections.maps.TypedListMap |
|
Forwards the call to wrappedMap.subMap. |
subMap(fromIndex:int, toIndex:int) — method, class org.as3collections.maps.TypedSortedMap |
|
Forwards the call to wrappedMap.subMap. |
|
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |