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