Enum Class ProcessConstants.EdgeProperty
java.lang.Object
java.lang.Enum<ProcessConstants.EdgeProperty>
de.aristaflow.adept2.model.globals.ProcessConstants.EdgeProperty
- All Implemented Interfaces:
Serializable,Comparable<ProcessConstants.EdgeProperty>,java.lang.constant.Constable
- Enclosing class:
- ProcessConstants
Enum for properties / attributes of Edge.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe edge code,Edge.getEdgeCode().The type of the edge,ProcessConstants.EdgeType/Edge.getType().The user attributes. -
Method Summary
Modifier and TypeMethodDescriptionintgetCode()valueOf(int code) Returns the enum constant of this class with the specified name.Returns the enum constant of this class with the specified name.static ProcessConstants.EdgeProperty[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TYPE
The type of the edge,ProcessConstants.EdgeType/Edge.getType(). -
EDGE_CODE
The edge code,Edge.getEdgeCode(). -
USER_ATTRIBUTE
The user attributes.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getCode
public int getCode() -
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
code- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-