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