Packagecom.vmware.data.common
Classpublic class OperationType
InheritanceOperationType Inheritance Object

Defines the types of operations which can occur on an object.



Public Properties
 PropertyDefined By
  value : String
OperationType
Public Methods
 MethodDefined By
  
OperationType(value:String)
OperationType
  
equals(another:Object):Boolean
Utility function to compare operationTypes for equality.
OperationType
  
toString():String
OperationType
  
valueOf():Object
OperationType
Public Constants
 ConstantDefined By
  ADD : OperationType
[static] Constant which defines an operation which causes an object to be added/created.
OperationType
  CHANGE : OperationType
[static] Constant which defines an operation which causes a general change on an object.
OperationType
  DELETE : OperationType
[static] Constant which defines an operation which causes an object to be removed.
OperationType
  RELATIONSHIP_CHANGE : OperationType
[static] Constant which defines an operation which causes a change on an object which also affects its relationships or the topology.
OperationType
Property Detail
valueproperty
public var value:String

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



Parameters
value:String
Method Detail
equals()method
public function equals(another:Object):Boolean

Utility function to compare operationTypes for equality.

Parameters

another:Object — An operation type to compare to this.

Returns
Boolean — True if the two operations are the same, false otherwise.
toString()method 
public function toString():String

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

Returns
Object
Constant Detail
ADDConstant
public static const ADD:OperationType

Constant which defines an operation which causes an object to be added/created.

CHANGEConstant 
public static const CHANGE:OperationType

Constant which defines an operation which causes a general change on an object.

DELETEConstant 
public static const DELETE:OperationType

Constant which defines an operation which causes an object to be removed.

RELATIONSHIP_CHANGEConstant 
public static const RELATIONSHIP_CHANGE:OperationType

Constant which defines an operation which causes a change on an object which also affects its relationships or the topology. Such as VM Migration.