protected static enum TxnHandler.DatabaseProduct extends Enum<TxnHandler.DatabaseProduct>
Enum Constant and Description |
---|
DERBY |
MYSQL |
ORACLE |
POSTGRES |
SQLSERVER |
Modifier and Type | Method and Description |
---|---|
static TxnHandler.DatabaseProduct |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TxnHandler.DatabaseProduct[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TxnHandler.DatabaseProduct DERBY
public static final TxnHandler.DatabaseProduct MYSQL
public static final TxnHandler.DatabaseProduct POSTGRES
public static final TxnHandler.DatabaseProduct ORACLE
public static final TxnHandler.DatabaseProduct SQLSERVER
public static TxnHandler.DatabaseProduct[] values()
for (TxnHandler.DatabaseProduct c : TxnHandler.DatabaseProduct.values()) System.out.println(c);
public static TxnHandler.DatabaseProduct 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 © 2017 The Apache Software Foundation. All rights reserved.