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