Enum ExecutableInstancePropertyTracker.ExecutableInstanceProperty
- java.lang.Object
-
- java.lang.Enum<ExecutableInstancePropertyTracker.ExecutableInstanceProperty>
-
- de.aristaflow.adept2.model.execution.ExecutableInstancePropertyTracker.ExecutableInstanceProperty
-
- All Implemented Interfaces:
Serializable
,Comparable<ExecutableInstancePropertyTracker.ExecutableInstanceProperty>
- Enclosing interface:
- ExecutableInstancePropertyTracker
public static enum ExecutableInstancePropertyTracker.ExecutableInstanceProperty extends Enum<ExecutableInstancePropertyTracker.ExecutableInstanceProperty>
Properties which are changeable in an executable instance.- Author:
- Kevin Goeser
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSTANCE_NAME
INSTANCE_STATE_LISTENER
PLUGIN_DATA
USER_ATTRIBUTES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExecutableInstancePropertyTracker.ExecutableInstanceProperty
valueOf(String name)
Returns the enum constant of this type with the specified name.static ExecutableInstancePropertyTracker.ExecutableInstanceProperty[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSTANCE_NAME
public static final ExecutableInstancePropertyTracker.ExecutableInstanceProperty INSTANCE_NAME
-
INSTANCE_STATE_LISTENER
public static final ExecutableInstancePropertyTracker.ExecutableInstanceProperty INSTANCE_STATE_LISTENER
-
PLUGIN_DATA
public static final ExecutableInstancePropertyTracker.ExecutableInstanceProperty PLUGIN_DATA
-
USER_ATTRIBUTES
public static final ExecutableInstancePropertyTracker.ExecutableInstanceProperty USER_ATTRIBUTES
-
-
Method Detail
-
values
public static ExecutableInstancePropertyTracker.ExecutableInstanceProperty[] 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.ExecutableInstanceProperty c : ExecutableInstancePropertyTracker.ExecutableInstanceProperty.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.ExecutableInstanceProperty 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
-
-