org.ow2.orchestra.facade.runtime
Enum ActivityType

java.lang.Object
  extended by java.lang.Enum<ActivityType>
      extended by org.ow2.orchestra.facade.runtime.ActivityType
All Implemented Interfaces:
Serializable, Comparable<ActivityType>

public enum ActivityType
extends Enum<ActivityType>

Bpel activity types supported by Orchestra

Author:
Alfonso Fuca

Enum Constant Summary
ASSIGN
           
CATCH_HANDLER
           
CATCHALL_HANDLER
           
COMPENSATE
           
COMPENSATE_SCOPE
           
COMPENSATION_HANDLER
           
EMPTY
           
EXIT
           
EXTENSION_ACTIVITY
           
EXTENSION_TEST
           
FLOW
           
FOR_EACH
           
IF
           
INVOKE
           
PICK
           
PROCESS
           
RECEIVE
           
REPEAT_UNTIL
           
REPLY
           
RETHROW
           
SCOPE
           
SCOPE_EVENT_HANDLER
           
SEQUENCE
           
TERMINATION_HANDLER
           
THROW
           
UNKNOWN_ACTIVITY
           
VALIDATE
           
WAIT
           
WHILE
           
 
Method Summary
 boolean isBpelActivity()
           
static ActivityType valueOf(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 are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

ASSIGN

public static final ActivityType ASSIGN

COMPENSATE

public static final ActivityType COMPENSATE

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

CATCH_HANDLER

public static final ActivityType CATCH_HANDLER

CATCHALL_HANDLER

public static final ActivityType CATCHALL_HANDLER

COMPENSATION_HANDLER

public static final ActivityType COMPENSATION_HANDLER

TERMINATION_HANDLER

public static final ActivityType TERMINATION_HANDLER

SCOPE_EVENT_HANDLER

public static final ActivityType SCOPE_EVENT_HANDLER

EXTENSION_TEST

public static final ActivityType EXTENSION_TEST

UNKNOWN_ACTIVITY

public static final ActivityType UNKNOWN_ACTIVITY
Method Detail

values

public static ActivityType[] values()
Returns an array containing the constants of this enum type, in the order they are 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 are declared

valueOf

public static ActivityType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

isBpelActivity

public boolean isBpelActivity()


Copyright © 2011 OW2 Consortium. All Rights Reserved.