public enum TransactionManagerType extends Enum<TransactionManagerType>
| Modifier and Type | Class and Description | 
|---|---|
| static class  | TransactionManagerType.DataDecoderA Data decoder for this Enum | 
| Modifier and Type | Field and Description | 
|---|---|
| static String | EXTERNAL_STRING | 
| static String | JDBC_STRING | 
| static String | JTA_STRING | 
| Modifier and Type | Method and Description | 
|---|---|
| static TransactionManagerType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TransactionManagerType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TransactionManagerType JDBC
public static final TransactionManagerType JTA
public static final TransactionManagerType EXTERNAL
public static final String JDBC_STRING
public static final String JTA_STRING
public static final String EXTERNAL_STRING
public static TransactionManagerType[] values()
for (TransactionManagerType c : TransactionManagerType.values()) System.out.println(c);
public static TransactionManagerType 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. All rights reserved.