public static enum ProcessConstants.TemplateProperty extends java.lang.Enum<ProcessConstants.TemplateProperty>
| Enum Constant and Description |
|---|
INPUT_PARAMETER
The input parameters of the template,
de.aristaflow.adept2.model.processmodel.Template#getParameters(AccessType)
with AccessType.READ. |
INSTANCE_NAME_TEMPLATE
The pattern for an instance name of this template,
Template.getInstanceNameTemplate(). |
NAME
The name of the Template,
Template.getName(). |
OUTPUT_PARAMETER
The output parameters of the template,
de.aristaflow.adept2.model.processmodel.Template#getParameters(AccessType)
with AccessType.WRITE. |
SUPERVISOR_AGENT
The supervisor agent,
Template.getSupervisorAgent(). |
USER_ATTRIBUTE
The user attributes of the template.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.TemplateProperty |
valueOf(int code) |
static ProcessConstants.TemplateProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.TemplateProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.TemplateProperty NAME
Template.getName().public static final ProcessConstants.TemplateProperty INSTANCE_NAME_TEMPLATE
Template.getInstanceNameTemplate().public static final ProcessConstants.TemplateProperty SUPERVISOR_AGENT
Template.getSupervisorAgent().public static final ProcessConstants.TemplateProperty INPUT_PARAMETER
de.aristaflow.adept2.model.processmodel.Template#getParameters(AccessType)
with AccessType.READ.public static final ProcessConstants.TemplateProperty OUTPUT_PARAMETER
de.aristaflow.adept2.model.processmodel.Template#getParameters(AccessType)
with AccessType.WRITE.public static final ProcessConstants.TemplateProperty USER_ATTRIBUTE
public static ProcessConstants.TemplateProperty[] values()
for (ProcessConstants.TemplateProperty c : ProcessConstants.TemplateProperty.values()) System.out.println(c);
public static ProcessConstants.TemplateProperty 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.TemplateProperty valueOf(int code)