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