public enum RollbackState extends Enum<RollbackState>
| Enum Constant and Description |
|---|
CHOOSE_OPTIONS |
CONFIRM_ROLLBACK |
ERROR |
ROLLING_BACK |
STOP_FAILED |
STOP_SERVERS |
STOPPING |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static RollbackState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RollbackState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RollbackState STOP_SERVERS
public static final RollbackState STOPPING
public static final RollbackState STOP_FAILED
public static final RollbackState CHOOSE_OPTIONS
public static final RollbackState CONFIRM_ROLLBACK
public static final RollbackState ROLLING_BACK
public static final RollbackState SUCCESS
public static final RollbackState ERROR
public static RollbackState[] values()
for (RollbackState c : RollbackState.values()) System.out.println(c);
public static RollbackState 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 © 2014 JBoss, a division of Red Hat. All rights reserved.