public enum TransactionCompletionBehavior extends Enum<TransactionCompletionBehavior>
| Enum Constant and Description |
|---|
COMPLETE_DEFERRED |
COMPLETE_IMMEDIATELY |
USE_CONFIGURATION |
| Modifier and Type | Method and Description |
|---|---|
static TransactionCompletionBehavior |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static TransactionCompletionBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TransactionCompletionBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TransactionCompletionBehavior COMPLETE_IMMEDIATELY
public static final TransactionCompletionBehavior COMPLETE_DEFERRED
public static final TransactionCompletionBehavior USE_CONFIGURATION
public static TransactionCompletionBehavior[] values()
for (TransactionCompletionBehavior c : TransactionCompletionBehavior.values()) System.out.println(c);
public static TransactionCompletionBehavior 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 nullpublic String getValue()
public String toString()
toString in class Enum<TransactionCompletionBehavior>public static TransactionCompletionBehavior fromValue(String text)
Copyright © 2021. All rights reserved.