public enum ProcessEntity extends java.lang.Enum<ProcessEntity>
Enum Constant and Description |
---|
ACTIVITY |
ACTIVITYINSTANCE |
CASE |
PROCESS |
RESOURCE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLongDescription() |
java.lang.String |
getShortDescription() |
static ProcessEntity |
parseFromText(java.lang.String text) |
void |
setLongDescription(java.lang.String longDescription) |
void |
setShortDescription(java.lang.String shortDescription) |
static ProcessEntity |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessEntity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessEntity ACTIVITYINSTANCE
public static final ProcessEntity ACTIVITY
public static final ProcessEntity CASE
public static final ProcessEntity RESOURCE
public static final ProcessEntity PROCESS
public static ProcessEntity[] values()
for (ProcessEntity c : ProcessEntity.values()) System.out.println(c);
public static ProcessEntity 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 java.lang.String getShortDescription()
public void setShortDescription(java.lang.String shortDescription)
public java.lang.String getLongDescription()
public void setLongDescription(java.lang.String longDescription)
public static ProcessEntity parseFromText(java.lang.String text)