public static enum BPMNOperatorRenderer.OperatorType extends java.lang.Enum<BPMNOperatorRenderer.OperatorType>
Enum Constant and Description |
---|
AND |
DEF |
END |
OR |
PLACEHOLDER |
START |
XOR |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
toString() |
static BPMNOperatorRenderer.OperatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BPMNOperatorRenderer.OperatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BPMNOperatorRenderer.OperatorType XOR
public static final BPMNOperatorRenderer.OperatorType OR
public static final BPMNOperatorRenderer.OperatorType AND
public static final BPMNOperatorRenderer.OperatorType DEF
public static final BPMNOperatorRenderer.OperatorType START
public static final BPMNOperatorRenderer.OperatorType END
public static final BPMNOperatorRenderer.OperatorType PLACEHOLDER
public static BPMNOperatorRenderer.OperatorType[] values()
for (BPMNOperatorRenderer.OperatorType c : BPMNOperatorRenderer.OperatorType.values()) System.out.println(c);
public static BPMNOperatorRenderer.OperatorType 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 toString()
toString
in class java.lang.Enum<BPMNOperatorRenderer.OperatorType>