Pakiet | com.adobe.fiber.runtime.lib |
Klasa | public class CollectionFunc |
Dziedziczenie | CollectionFunc Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Metoda | Zdefiniowane przez | ||
---|---|---|---|
[statyczny]
Returns the average of a collection of numeric values. | CollectionFunc | ||
[statyczny]
Returns the maximum value in a collection of numbers. | CollectionFunc | ||
[statyczny]
Returns the minimum value in a collection of numbers. | CollectionFunc | ||
[statyczny]
Returns the total of all numbers in a collection. | CollectionFunc | ||
[statyczny]
Checks if a collection contains a given item. | CollectionFunc | ||
[statyczny]
Returns the number of elements (the size) of a collection. | CollectionFunc | ||
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | ||
[statyczny]
Checks if a collection is empty. | CollectionFunc | ||
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | ||
[statyczny]
Given a value and a sorted list of values, returns number of list items less than the value. | CollectionFunc | ||
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | ||
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | ||
[statyczny]
Returns the size of a collection. | CollectionFunc | ||
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | ||
Zwraca ciąg reprezentujący określony obiekt. | Object | ||
Zwraca pierwotną wartość dla określonego obiektu. | Object |
collectionAvg | () | metoda |
public static function collectionAvg(c:ArrayCollection):Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the average of a collection of numeric values. If size of the collection is 0 or the collection is null, 0 is returned.
Parametry
c:ArrayCollection — Collection
|
Number — The average
|
collectionMax | () | metoda |
public static function collectionMax(c:ArrayCollection):Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the maximum value in a collection of numbers. If size of the collection is 0 or the collection is null, 0 is returned.
Parametry
c:ArrayCollection — Collection containing Number values
|
Number — Largest value in the collection
|
collectionMin | () | metoda |
public static function collectionMin(c:ArrayCollection):Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the minimum value in a collection of numbers. If size of the collection is 0 or the collection is null, 0 is returned.
Parametry
c:ArrayCollection — Collection containing Number values
|
Number — Smallest value in the collection
|
collectionSum | () | metoda |
public static function collectionSum(c:ArrayCollection):Number
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the total of all numbers in a collection. If size of the collection is 0 or the collection is null, 0 is returned.
Parametry
c:ArrayCollection — Collection
|
Number — Sum of the collection
|
contains | () | metoda |
public static function contains(c:ArrayCollection, item:Object):Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 4.5 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Checks if a collection contains a given item. If the collection is empty, it doesn't contain the item. If the item is null or undefined it can still be contained in the collection.
Parametry
c:ArrayCollection — Collection
| |
item:Object — Object to test
|
Boolean — true if item is contained in collection c
|
count | () | metoda |
public static function count(collection:ArrayCollection):int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 4.5 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the number of elements (the size) of a collection. Equivalent to sizeof.
Parametry
collection:ArrayCollection — The collection
|
int — Size of collection
|
isEmpty | () | metoda |
public static function isEmpty(collection:ArrayCollection):Boolean
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Checks if a collection is empty. If collection does not exist, it is empty.
Parametry
collection:ArrayCollection — Collection
|
Boolean — true if collection is empty
|
part | () | metoda |
public static function part(value:Object, list:ArrayCollection):int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Given a value and a sorted list of values, returns number of list items less than the value. (If not sorted, returns the length of the list prefix made up of items less than value.)
For Example, given a collection C, containing [10, 20, 30], the call part(20, C) returns 1 as there is a single value (10) in the collection less than 20.
Parametry
value:Object — Value to search for
| |
list:ArrayCollection — Sorted collection
|
int — Number of entries in the list with values less than value
|
sizeof | () | metoda |
public static function sizeof(collection:ArrayCollection):int
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Wersje środowiska wykonawczego: | Flash Player 9, AIR 1.1 |
Returns the size of a collection. Equivalent to count.
Parametry
collection:ArrayCollection — The collection
|
int — Size of collection
|
Tue Jun 12 2018, 12:06 PM Z