public enum JdbcStorageConfig extends Enum<JdbcStorageConfig>
| Enum Constant and Description |
|---|
COLUMN_MAPPING |
DATABASE_TYPE |
JDBC_DRIVER_CLASS |
JDBC_FETCH_SIZE |
JDBC_URL |
QUERY |
TABLE |
| Modifier and Type | Method and Description |
|---|---|
String |
getPropertyName() |
boolean |
isRequired() |
static JdbcStorageConfig |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcStorageConfig[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcStorageConfig DATABASE_TYPE
public static final JdbcStorageConfig JDBC_URL
public static final JdbcStorageConfig JDBC_DRIVER_CLASS
public static final JdbcStorageConfig QUERY
public static final JdbcStorageConfig TABLE
public static final JdbcStorageConfig JDBC_FETCH_SIZE
public static final JdbcStorageConfig COLUMN_MAPPING
public static JdbcStorageConfig[] values()
for (JdbcStorageConfig c : JdbcStorageConfig.values()) System.out.println(c);
public static JdbcStorageConfig 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 getPropertyName()
public boolean isRequired()
Copyright © 2019 The Apache Software Foundation. All Rights Reserved.