Packagecom.vmware.data.query
Classpublic class DataUpdateMode
InheritanceDataUpdateMode Inheritance Object

Defines the binding mode to use when requesting data through DataAccessManager.



Public Properties
 PropertyDefined By
  value : String
The value of this enum.
DataUpdateMode
Public Methods
 MethodDefined By
  
DataUpdateMode(value:String)
Constructs a new instance.
DataUpdateMode
  
equals(another:Object):Boolean
Compares this instance to another.
DataUpdateMode
  
toString():String
Returns the string representation of this instance.
DataUpdateMode
  
valueOf():Object
Returns the value of this instance.
DataUpdateMode
Public Constants
 ConstantDefined By
  EXPLICIT : DataUpdateMode
[static] DataAccessManager will not automatically update the data.
DataUpdateMode
  IMPLICIT : DataUpdateMode
[static] Data will be updated when explicitly requested as well as implicitly by DataAccessManager on various refresh triggers defined.
DataUpdateMode
  NONE : DataUpdateMode
[static] No binding.
DataUpdateMode
Property Detail
valueproperty
public var value:String

The value of this enum.

Constructor Detail
DataUpdateMode()Constructor
public function DataUpdateMode(value:String)

Constructs a new instance.

Parameters
value:String — The value of this instance.
Method Detail
equals()method
public function equals(another:Object):Boolean

Compares this instance to another.

Parameters

another:Object — Another object to compare this instance against.

Returns
Booleantrue if this instance is equal to the given object, or false otherwise.
toString()method 
public function toString():String

Returns the string representation of this instance.

Returns
String
valueOf()method 
public function valueOf():Object

Returns the value of this instance.

Returns
Object
Constant Detail
EXPLICITConstant
public static const EXPLICIT:DataUpdateMode

DataAccessManager will not automatically update the data. Data refresh can be manually requested only (through a Refresh button or programatically).

IMPLICITConstant 
public static const IMPLICIT:DataUpdateMode

Data will be updated when explicitly requested as well as implicitly by DataAccessManager on various refresh triggers defined. Such triggers may include automatic periodic refresh, refresh on task completion, etc.

NONEConstant 
public static const NONE:DataUpdateMode

No binding.