public enum InterpretationStrategy extends Enum<InterpretationStrategy>
Enum Constant and Description |
---|
BPMN_FIRST
It loops through all interpreters.
|
FULL_PARALLEL
It loops through all interpreters.
|
Modifier and Type | Method and Description |
---|---|
static InterpretationStrategy |
get(String value)
Returns interpretation strategy for name.
|
static InterpretationStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InterpretationStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterpretationStrategy BPMN_FIRST
public static final InterpretationStrategy FULL_PARALLEL
public static InterpretationStrategy[] values()
for (InterpretationStrategy c : InterpretationStrategy.values()) System.out.println(c);
public static InterpretationStrategy 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 nullpublic static InterpretationStrategy get(String value)
value
- Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.