Packageorg.axiis.utils
Classpublic class ObjectUtils
InheritanceObjectUtils Inheritance Object

This ObjectUtility class is primarily used to extract property values from dynamic objects



Public Methods
 MethodDefined By
  
getProperty(caller:Object, obj:Object, propertyName:Object):*
[static] Extracts propertyName from obj
ObjectUtils
Method Detail
getProperty()method
public static function getProperty(caller:Object, obj:Object, propertyName:Object):*

Extracts propertyName from obj

Parameters

caller:Object — The object invoking this function.
 
obj:Object — The object to extract a property value from
 
propertyName:Object — The String representing a property to extract. propertyName supports a dot.dot syntax as well as Arrays i.e propertyName="myObject.myArray[3].myOtherProperty" is a valid syntax

Returns
*