public static enum BpmnDiagram.Status extends Enum<BpmnDiagram.Status>
Enum Constant and Description |
---|
OUT_OF_SYNC |
SYNCED |
UNAVAILABLE |
UNSPECIFIED |
Modifier and Type | Method and Description |
---|---|
static BpmnDiagram.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BpmnDiagram.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BpmnDiagram.Status UNSPECIFIED
public static final BpmnDiagram.Status UNAVAILABLE
public static final BpmnDiagram.Status OUT_OF_SYNC
public static final BpmnDiagram.Status SYNCED
public static BpmnDiagram.Status[] values()
for (BpmnDiagram.Status c : BpmnDiagram.Status.values()) System.out.println(c);
public static BpmnDiagram.Status 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 nullCopyright © 2015. All rights reserved.