public enum Constants extends Enum<Constants>
| Modifier and Type | Field and Description |
|---|---|
static String |
BUNDLE_PROCESS_DEFINITIONS_HEADER |
static String |
BUNDLE_PROCESS_DEFINTIONS_DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
static Constants |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Constants[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final String BUNDLE_PROCESS_DEFINITIONS_HEADER
public static final String BUNDLE_PROCESS_DEFINTIONS_DEFAULT
public static Constants[] values()
for (Constants c : Constants.values()) System.out.println(c);
public static Constants 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 © 2017 camunda services GmbH. All rights reserved.