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