public enum RollbackMode extends Enum<RollbackMode>
| Enum Constant and Description |
|---|
REPLAY_COMMAND |
SKIP_COMMAND |
| Modifier and Type | Method and Description |
|---|---|
static RollbackMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RollbackMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RollbackMode REPLAY_COMMAND
public static final RollbackMode SKIP_COMMAND
public static RollbackMode[] values()
for (RollbackMode c : RollbackMode.values()) System.out.println(c);
public static RollbackMode 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 © 2020 tools4j.org (Marco Terzer, Anton Anufriev). All Rights Reserved.