Enum ProcessVariablesMapping.MappingType
- java.lang.Object
-
- java.lang.Enum<ProcessVariablesMapping.MappingType>
-
- org.activiti.spring.process.model.ProcessVariablesMapping.MappingType
-
- All Implemented Interfaces:
Serializable,Comparable<ProcessVariablesMapping.MappingType>
- Enclosing class:
- ProcessVariablesMapping
public static enum ProcessVariablesMapping.MappingType extends Enum<ProcessVariablesMapping.MappingType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MAP_ALLMAP_ALL_INPUTSMAP_ALL_OUTPUTS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProcessVariablesMapping.MappingTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ProcessVariablesMapping.MappingType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MAP_ALL
public static final ProcessVariablesMapping.MappingType MAP_ALL
-
MAP_ALL_INPUTS
public static final ProcessVariablesMapping.MappingType MAP_ALL_INPUTS
-
MAP_ALL_OUTPUTS
public static final ProcessVariablesMapping.MappingType MAP_ALL_OUTPUTS
-
-
Method Detail
-
values
public static ProcessVariablesMapping.MappingType[] 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 (ProcessVariablesMapping.MappingType c : ProcessVariablesMapping.MappingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProcessVariablesMapping.MappingType 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 nameNullPointerException- if the argument is null
-
-