| Package | org.springextensions.actionscript.core.task |
| SVN browsing | TaskFlowControlKind.as |
| Fisheye | TaskFlowControlKind.as |
| Class | public final class TaskFlowControlKind |
Documentation reference: tasks
| Property | Defined by | ||
|---|---|---|---|
| name : String [read-only]
| TaskFlowControlKind | ||
| Method | Defined by | ||
|---|---|---|---|
|
TaskFlowControlKind(name:String)
Creates a new
TaskFlowControlKind instance. | TaskFlowControlKind | ||
|
fromName(name:String):TaskFlowControlKind
[static]
Converts, if possible, a
String to its TaskFlowControlKind equivalent. | TaskFlowControlKind | ||
|
toString():String
| TaskFlowControlKind | ||
| Constant | Defined 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 | ||
| name | property |
name:String [read-only]Implementation
public function get name():String
| TaskFlowControlKind | () | constructor |
public function TaskFlowControlKind(name:String)
Creates a new TaskFlowControlKind instance.
name:String — The name of the current TaskFlowControlKind
|
| fromName | () | method |
public static function fromName(name:String):TaskFlowControlKind
Converts, if possible, a String to its TaskFlowControlKind equivalent.
name:String — the name of the requested TaskFlowControlKind.
|
TaskFlowControlKind —
A TaskFlowControlKind instance whose name value is equal to the specified name argument.
|
— Error when the specified name cannot be converted to a valid TaskFlowControlKind instance.
|
| toString | () | method |
public function toString():StringReturns
String — A String representation of the current TaskFlowControlKind.
|
| BREAK | constant |
public static const BREAK:TaskFlowControlKindIndicates a break in the flow control.
| CONTINUE | constant |
public static const CONTINUE:TaskFlowControlKindIndicates a continuation in the flow control.
| EXIT | constant |
public static const EXIT:TaskFlowControlKindIndicates an exit (abort) of the flow control.