Package com.uc4.api.objects
Enum SetValueAction.Scope
- java.lang.Object
-
- java.lang.Enum<SetValueAction.Scope>
-
- com.uc4.api.objects.SetValueAction.Scope
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SetValueAction.Scope>
- Enclosing class:
- SetValueAction
public static enum SetValueAction.Scope extends java.lang.Enum<SetValueAction.Scope>
Scope.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PARENT_PROCESS_FLOW
Parent process Flow.PROCESS_FLOW
Process Flow.TASK
Task.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SetValueAction.Scope
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SetValueAction.Scope[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TASK
public static final SetValueAction.Scope TASK
Task.
-
PROCESS_FLOW
public static final SetValueAction.Scope PROCESS_FLOW
Process Flow.
-
PARENT_PROCESS_FLOW
public static final SetValueAction.Scope PARENT_PROCESS_FLOW
Parent process Flow.
-
-
Method Detail
-
values
public static SetValueAction.Scope[] 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 (SetValueAction.Scope c : SetValueAction.Scope.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SetValueAction.Scope 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 namejava.lang.NullPointerException
- if the argument is null
-
-