org.jboss.soa.esb.util.jbpm
Enum CommandVehicle.Operation

java.lang.Object
  extended by java.lang.Enum<CommandVehicle.Operation>
      extended by org.jboss.soa.esb.util.jbpm.CommandVehicle.Operation
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CommandVehicle.Operation>
Enclosing class:
CommandVehicle

public static enum CommandVehicle.Operation
extends java.lang.Enum<CommandVehicle.Operation>


Enum Constant Summary
deployProcessDefinition
           
getProcessInstanceVariables
           
getTokenVariables
           
hasInstanceEnded
           
newProcessInstance
           
responseToRequest
           
sendMessageToEsb
           
setProcessInstanceVariables
           
setTokenVariables
           
signalProcess
           
signalToken
           
 
Method Summary
static CommandVehicle.Operation valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CommandVehicle.Operation[] 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
 

Enum Constant Detail

deployProcessDefinition

public static final CommandVehicle.Operation deployProcessDefinition

newProcessInstance

public static final CommandVehicle.Operation newProcessInstance

signalProcess

public static final CommandVehicle.Operation signalProcess

signalToken

public static final CommandVehicle.Operation signalToken

getProcessInstanceVariables

public static final CommandVehicle.Operation getProcessInstanceVariables

setProcessInstanceVariables

public static final CommandVehicle.Operation setProcessInstanceVariables

getTokenVariables

public static final CommandVehicle.Operation getTokenVariables

setTokenVariables

public static final CommandVehicle.Operation setTokenVariables

hasInstanceEnded

public static final CommandVehicle.Operation hasInstanceEnded

responseToRequest

public static final CommandVehicle.Operation responseToRequest

sendMessageToEsb

public static final CommandVehicle.Operation sendMessageToEsb
Method Detail

values

public static final CommandVehicle.Operation[] 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(CommandVehicle.Operation c : CommandVehicle.Operation.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static CommandVehicle.Operation 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