Paquete | mx.utils |
Clase | public class ArrayUtil |
Herencia | ArrayUtil Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
ArrayUtil.toArray()
method.
Propiedades públicas
Métodos públicos
Método | Definido por | ||
---|---|---|---|
[estática]
Returns the index of the item in the Array. | ArrayUtil | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
[estática]
Ensures that an Object can be used as an Array. | ArrayUtil | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve la representación de cadena del objeto especificado. | Object | ||
Devuelve el valor simple del objeto especificado. | Object |
Información sobre métodos
getItemIndex | () | método |
public static function getItemIndex(item:Object, source:Array):int
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Returns the index of the item in the Array.
Parámetros
item:Object — The item to find in the Array.
| |
source:Array — The Array to search for the item.
|
int — The index of the item, and -1 if the item is not in the list.
|
toArray | () | método |
public static function toArray(obj:Object):Array
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | Flash Player 9, AIR 1.1 |
Ensures that an Object can be used as an Array.
If the Object is already an Array, it returns the object. If the object is not an Array, it returns an Array in which the only element is the Object. As a special case, if the Object is null, it returns an empty Array.
Parámetros
obj:Object — Object that you want to ensure is an array.
|
Array — An Array. If the original Object is already an Array,
the original Array is returned. Otherwise, a new Array whose
only element is the Object is returned or an empty Array if
the Object was null.
|
Tue Jun 12 2018, 02:12 PM Z