org.ow2.orchestra.facade.runtime
Enum ActivityType
java.lang.Object
java.lang.Enum<ActivityType>
org.ow2.orchestra.facade.runtime.ActivityType
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ActivityType>
public enum ActivityType
- extends java.lang.Enum<ActivityType>
Bpel activity types supported by Orchestra
- Author:
- Alfonso Fuca
Method Summary |
static ActivityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ActivityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they're declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
ASSIGN
public static final ActivityType ASSIGN
COMPENSATE_SCOPE
public static final ActivityType COMPENSATE_SCOPE
EMPTY
public static final ActivityType EMPTY
EXIT
public static final ActivityType EXIT
EXTENSION_ACTIVITY
public static final ActivityType EXTENSION_ACTIVITY
FLOW
public static final ActivityType FLOW
FOR_EACH
public static final ActivityType FOR_EACH
IF
public static final ActivityType IF
INVOKE
public static final ActivityType INVOKE
PICK
public static final ActivityType PICK
PROCESS
public static final ActivityType PROCESS
RECEIVE
public static final ActivityType RECEIVE
REPEAT_UNTIL
public static final ActivityType REPEAT_UNTIL
REPLY
public static final ActivityType REPLY
RETHROW
public static final ActivityType RETHROW
SCOPE
public static final ActivityType SCOPE
SEQUENCE
public static final ActivityType SEQUENCE
THROW
public static final ActivityType THROW
VALIDATE
public static final ActivityType VALIDATE
WAIT
public static final ActivityType WAIT
WHILE
public static final ActivityType WHILE
EXTENSION_TEST
public static final ActivityType EXTENSION_TEST
UNKNOWN_ACTIVITY
public static final ActivityType UNKNOWN_ACTIVITY
values
public static final ActivityType[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ActivityType c : ActivityType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ActivityType valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
Copyright © 2009 OW2 Consortium. All Rights Reserved.