public enum ObBpmnProcessTypeEnum extends Enum<ObBpmnProcessTypeEnum>
| Enum Constant and Description |
|---|
NoneProcess |
PrivateProcess |
PublicProcess |
| Modifier and Type | Method and Description |
|---|---|
static ObBpmnProcessTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObBpmnProcessTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObBpmnProcessTypeEnum NoneProcess
public static final ObBpmnProcessTypeEnum PublicProcess
public static final ObBpmnProcessTypeEnum PrivateProcess
public static ObBpmnProcessTypeEnum[] values()
for (ObBpmnProcessTypeEnum c : ObBpmnProcessTypeEnum.values()) System.out.println(c);
public static ObBpmnProcessTypeEnum valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is null