Enum ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty
- java.lang.Object
-
- java.lang.Enum<ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty>
-
- de.aristaflow.adept2.model.execution.ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty>
- Enclosing interface:
- ExecutableInstancePropertyTracker
public static enum ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty extends Enum<ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty>
Node properties which are changeable in an executable instance.- Author:
- KevinGoeser
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSIGNED_RUNTIME_MANAGER
ENQUIRIES
EXECUTION_MODE
ITERATION
LWP_INSTANCE_ID
PERFORMING_AGENT
STATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STATE
public static final ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty STATE
-
PERFORMING_AGENT
public static final ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty PERFORMING_AGENT
-
ITERATION
public static final ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty ITERATION
-
EXECUTION_MODE
public static final ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty EXECUTION_MODE
-
LWP_INSTANCE_ID
public static final ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty LWP_INSTANCE_ID
-
ENQUIRIES
public static final ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty ENQUIRIES
-
ASSIGNED_RUNTIME_MANAGER
public static final ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty ASSIGNED_RUNTIME_MANAGER
-
-
Method Detail
-
values
public static ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty[] 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 (ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty c : ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExecutableInstancePropertyTracker.ExecutableInstanceNodeProperty 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
-
-