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