Enum UpdateManager.ProcessProperties
- java.lang.Object
-
- java.lang.Enum<UpdateManager.ProcessProperties>
-
- de.aristaflow.adept2.core.updatemanager.UpdateManager.ProcessProperties
-
- All Implemented Interfaces:
Serializable
,Comparable<UpdateManager.ProcessProperties>
- Enclosing interface:
- UpdateManager
public static enum UpdateManager.ProcessProperties extends Enum<UpdateManager.ProcessProperties>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OBJECT_REPLACED
Property, indicating that the original object has been replace.PROCESS
PROCESS_AGENT
PROCESS_DATA_ELEMENT
PROCESS_DESCRIPTION
PROCESS_IN_DATA
PROCESS_INITIATOR_ORG_POS
PROCESS_INSTANCE_NAME_TEMPLATE
PROCESS_INSTANCEID
PROCESS_NAME
PROCESS_OUT_DATA
PROCESS_PLUG_IN_DATA
PROCESS_SUPERVISOR_AGENT
PROCESS_SUPERVISOR_ORG_POSITION
PROCESS_TEMPLATEID
PROCESS_TYPE
PROCESS_USER_ATTRIB
PROCESS_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UpdateManager.ProcessProperties
valueOf(String name)
Returns the enum constant of this type with the specified name.static UpdateManager.ProcessProperties[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROCESS_NAME
public static final UpdateManager.ProcessProperties PROCESS_NAME
-
PROCESS_DESCRIPTION
public static final UpdateManager.ProcessProperties PROCESS_DESCRIPTION
-
PROCESS_IN_DATA
public static final UpdateManager.ProcessProperties PROCESS_IN_DATA
-
PROCESS_OUT_DATA
public static final UpdateManager.ProcessProperties PROCESS_OUT_DATA
-
PROCESS_SUPERVISOR_AGENT
public static final UpdateManager.ProcessProperties PROCESS_SUPERVISOR_AGENT
-
PROCESS_SUPERVISOR_ORG_POSITION
public static final UpdateManager.ProcessProperties PROCESS_SUPERVISOR_ORG_POSITION
-
PROCESS_TYPE
public static final UpdateManager.ProcessProperties PROCESS_TYPE
-
PROCESS_VERSION
public static final UpdateManager.ProcessProperties PROCESS_VERSION
-
PROCESS_TEMPLATEID
public static final UpdateManager.ProcessProperties PROCESS_TEMPLATEID
-
PROCESS_INSTANCEID
public static final UpdateManager.ProcessProperties PROCESS_INSTANCEID
-
PROCESS_INITIATOR_ORG_POS
public static final UpdateManager.ProcessProperties PROCESS_INITIATOR_ORG_POS
-
PROCESS_AGENT
public static final UpdateManager.ProcessProperties PROCESS_AGENT
-
PROCESS_DATA_ELEMENT
public static final UpdateManager.ProcessProperties PROCESS_DATA_ELEMENT
-
PROCESS_INSTANCE_NAME_TEMPLATE
public static final UpdateManager.ProcessProperties PROCESS_INSTANCE_NAME_TEMPLATE
-
PROCESS_USER_ATTRIB
public static final UpdateManager.ProcessProperties PROCESS_USER_ATTRIB
-
PROCESS_PLUG_IN_DATA
public static final UpdateManager.ProcessProperties PROCESS_PLUG_IN_DATA
-
PROCESS
public static final UpdateManager.ProcessProperties PROCESS
-
OBJECT_REPLACED
public static final UpdateManager.ProcessProperties OBJECT_REPLACED
Property, indicating that the original object has been replace. Old and new value of the event shall be set appropriately.
-
-
Method Detail
-
values
public static UpdateManager.ProcessProperties[] 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 (UpdateManager.ProcessProperties c : UpdateManager.ProcessProperties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UpdateManager.ProcessProperties 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
-
-