Paket | com.adobe.fiber.runtime.lib |
Sınıf | public class CollectionFunc |
Miras Alma | CollectionFunc Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Yöntem | Tanımlayan: | ||
---|---|---|---|
[statik]
Returns the average of a collection of numeric values. | CollectionFunc | ||
[statik]
Returns the maximum value in a collection of numbers. | CollectionFunc | ||
[statik]
Returns the minimum value in a collection of numbers. | CollectionFunc | ||
[statik]
Returns the total of all numbers in a collection. | CollectionFunc | ||
[statik]
Checks if a collection contains a given item. | CollectionFunc | ||
[statik]
Returns the number of elements (the size) of a collection. | CollectionFunc | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
[statik]
Checks if a collection is empty. | CollectionFunc | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
[statik]
Given a value and a sorted list of values, returns number of list items less than the value. | CollectionFunc | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
[statik]
Returns the size of a collection. | CollectionFunc | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
Belirtilen nesnenin dize olarak temsil edilen halini döndürür. | Object | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
collectionAvg | () | yöntem |
public static function collectionAvg(c:ArrayCollection):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
c:ArrayCollection — Collection
|
Number — The average
|
collectionMax | () | yöntem |
public static function collectionMax(c:ArrayCollection):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
c:ArrayCollection — Collection containing Number values
|
Number — Largest value in the collection
|
collectionMin | () | yöntem |
public static function collectionMin(c:ArrayCollection):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
c:ArrayCollection — Collection containing Number values
|
Number — Smallest value in the collection
|
collectionSum | () | yöntem |
public static function collectionSum(c:ArrayCollection):Number
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
c:ArrayCollection — Collection
|
Number — Sum of the collection
|
contains | () | yöntem |
public static function contains(c:ArrayCollection, item:Object):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.5 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
c:ArrayCollection — Collection
| |
item:Object — Object to test
|
Boolean — true if item is contained in collection c
|
count | () | yöntem |
public static function count(collection:ArrayCollection):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 4.5 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the number of elements (the size) of a collection. Equivalent to sizeof.
Parametreler
collection:ArrayCollection — The collection
|
int — Size of collection
|
isEmpty | () | yöntem |
public static function isEmpty(collection:ArrayCollection):Boolean
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Checks if a collection is empty. If collection does not exist, it is empty.
Parametreler
collection:ArrayCollection — Collection
|
Boolean — true if collection is empty
|
part | () | yöntem |
public static function part(value:Object, list:ArrayCollection):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
value:Object — Value to search for
| |
list:ArrayCollection — Sorted collection
|
int — Number of entries in the list with values less than value
|
sizeof | () | yöntem |
public static function sizeof(collection:ArrayCollection):int
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Çalışma Zamanı Sürümleri: | Flash Player 9, AIR 1.1 |
Returns the size of a collection. Equivalent to count.
Parametreler
collection:ArrayCollection — The collection
|
int — Size of collection
|
Tue Jun 12 2018, 01:09 PM Z