Package | com.adobe.fiber.util |
Class | public class FiberUtils |
Inheritance | FiberUtils Object |
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Public Properties
Public Methods
Method | Defined By | ||
---|---|---|---|
Constructor. | FiberUtils | ||
[static]
Adds the contents of child array to the contents
of parent array. | FiberUtils | ||
[static]
Compares the contents of two arrays. | FiberUtils | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object |
Constructor Detail
FiberUtils | () | Constructor |
public function FiberUtils()
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Constructor.
Method Detail
arrayAdd | () | method |
public static function arrayAdd(parent:Array, child:Array):void
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Adds the contents of child
array to the contents
of parent
array.
Parameters
parent:Array — Array to add values to
| |
child:Array — Array whose contents will be added to parent
|
arrayCompare | () | method |
public static function arrayCompare(array1:Array, array2:Array):Boolean
Language Version: | ActionScript 3.0 |
Product Version: | Adobe Digital Enterprise Platform Data Services for Java EE 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Compares the contents of two arrays.
Parameters
array1:Array — first Array instance to compare
| |
array2:Array — second Array instance to compare
|
Boolean — true if both arguments are arrays with the same elements (compared by reference) in the same
order. False otherwise. Note that passing null for both arrays returns false.
|
Mon Nov 28 2011, 06:48 AM -08:00