public static enum AggregationParser.Database extends Enum<AggregationParser.Database>
Enum Constant and Description |
---|
DB2 |
DEFAULT |
H2 |
MSSQL |
MYSQL |
ORACLE |
PostgreSQL |
Modifier and Type | Method and Description |
---|---|
static AggregationParser.Database |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationParser.Database[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationParser.Database MYSQL
public static final AggregationParser.Database ORACLE
public static final AggregationParser.Database MSSQL
public static final AggregationParser.Database DB2
public static final AggregationParser.Database PostgreSQL
public static final AggregationParser.Database H2
public static final AggregationParser.Database DEFAULT
public static AggregationParser.Database[] values()
for (AggregationParser.Database c : AggregationParser.Database.values()) System.out.println(c);
public static AggregationParser.Database 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.