public static enum ProcessConstants.InstanceProperty extends java.lang.Enum<ProcessConstants.InstanceProperty>
| Enum Constant and Description |
|---|
INPUT_PARAMETER
The input parameters of the instance,
Setter
ChangePrimitives.setInputParameters(Set). |
NAME
The name of the Instance,
Instance.getName(). |
OUTPUT_PARAMETER
The output parameters of the instance,
Setter
ChangePrimitives.setOutputParameters(Set). |
SUPERVISOR_AGENT
The supervisor agent,
Instance.getSupervisorAgent(). |
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.InstanceProperty |
valueOf(int code) |
static ProcessConstants.InstanceProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.InstanceProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.InstanceProperty NAME
Instance.getName().public static final ProcessConstants.InstanceProperty SUPERVISOR_AGENT
Instance.getSupervisorAgent().public static final ProcessConstants.InstanceProperty INPUT_PARAMETER
ChangePrimitives.setInputParameters(Set).
Getter
Instance.getTemplate() to
get the instance specific template {de.aristaflow.adept2.model.processmodel.Template#getParameters(AccessType)
with AccessType.READ
to get the parameterspublic static final ProcessConstants.InstanceProperty OUTPUT_PARAMETER
ChangePrimitives.setOutputParameters(Set).
Getter
Instance.getTemplate() to
get the instance specific template {de.aristaflow.adept2.model.processmodel.Template#getParameters(AccessType)
with AccessType.WRITE
to get the parameterspublic static ProcessConstants.InstanceProperty[] values()
for (ProcessConstants.InstanceProperty c : ProcessConstants.InstanceProperty.values()) System.out.println(c);
public static ProcessConstants.InstanceProperty valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getCode()
public static ProcessConstants.InstanceProperty valueOf(int code)