org.camunda.bpm.extension.jbehave.example.simple
Enum SimpleProcessConstants.Variables

java.lang.Object
  extended by java.lang.Enum<SimpleProcessConstants.Variables>
      extended by org.camunda.bpm.extension.jbehave.example.simple.SimpleProcessConstants.Variables
All Implemented Interfaces:
Serializable, Comparable<SimpleProcessConstants.Variables>
Enclosing class:
SimpleProcessConstants

public static enum SimpleProcessConstants.Variables
extends Enum<SimpleProcessConstants.Variables>

Process variables.


Field Summary
static String ARE_PROCESSING_ERRORS_PRESENT
           
static String CONTRACT_ID
           
static String IS_AUTOMATIC
           
 
Method Summary
static SimpleProcessConstants.Variables valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SimpleProcessConstants.Variables[] 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
 

Field Detail

IS_AUTOMATIC

public static final String IS_AUTOMATIC
See Also:
Constant Field Values

CONTRACT_ID

public static final String CONTRACT_ID
See Also:
Constant Field Values

ARE_PROCESSING_ERRORS_PRESENT

public static final String ARE_PROCESSING_ERRORS_PRESENT
See Also:
Constant Field Values
Method Detail

values

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

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

valueOf

public static SimpleProcessConstants.Variables 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


Copyright © 2014 camunda services GmbH. All rights reserved.