Packageorg.springextensions.actionscript.core.task
SVN browsingTaskFlowControlKind.as
FisheyeTaskFlowControlKind.as
Classpublic final class TaskFlowControlKind

Enumeration that describes different kinds of flow control.



Documentation reference: tasks


Public Properties
 PropertyDefined by
  name : String
[read-only]
TaskFlowControlKind
Public Methods
 MethodDefined by
  
TaskFlowControlKind(name:String)
Creates a new TaskFlowControlKind instance.
TaskFlowControlKind
  
[static] Converts, if possible, a String to its TaskFlowControlKind equivalent.
TaskFlowControlKind
  
toString():String
TaskFlowControlKind
Public Constants
 ConstantDefined by
  BREAK : TaskFlowControlKind
[static] Indicates a break in the flow control.
TaskFlowControlKind
  CONTINUE : TaskFlowControlKind
[static] Indicates a continuation in the flow control.
TaskFlowControlKind
  EXIT : TaskFlowControlKind
[static] Indicates an exit (abort) of the flow control.
TaskFlowControlKind
Property detail
nameproperty
name:String  [read-only]

Implementation
    public function get name():String
Constructor detail
TaskFlowControlKind()constructor
public function TaskFlowControlKind(name:String)

Creates a new TaskFlowControlKind instance.

Parameters
name:String — The name of the current TaskFlowControlKind
Method detail
fromName()method
public static function fromName(name:String):TaskFlowControlKind

Converts, if possible, a String to its TaskFlowControlKind equivalent.

Parameters
name:String — the name of the requested TaskFlowControlKind.

Returns
TaskFlowControlKind — A TaskFlowControlKind instance whose name value is equal to the specified name argument.

Throws
— Error when the specified name cannot be converted to a valid TaskFlowControlKind instance.
toString()method 
public function toString():String

Returns
String — A String representation of the current TaskFlowControlKind.
Constant detail
BREAKconstant
public static const BREAK:TaskFlowControlKind

Indicates a break in the flow control.

CONTINUEconstant 
public static const CONTINUE:TaskFlowControlKind

Indicates a continuation in the flow control.

EXITconstant 
public static const EXIT:TaskFlowControlKind

Indicates an exit (abort) of the flow control.