public enum JdbcProcess extends Enum<JdbcProcess> implements ConfigurationItem
Modifier and Type | Class and Description |
---|---|
static class |
JdbcProcess.OperationKind
The drain operation kinds.
|
static class |
JdbcProcess.OptionSymbols
The source/drain option kinds.
|
Enum Constant and Description |
---|
COLUMNS
The script key of target column names.
|
CONDITION
The script key of search condition (for sources).
|
CUSTOM_TRUNCATE
The script key of the custom truncate statement (for drains).
|
JDBC_SUPPORT
The script key of
DataModelJdbcSupport class. |
OPERATION
The script key of target operation (for drains).
|
OPTIONS
The script key of the operation options.
|
TABLE
The script key of target table name.
|
Modifier and Type | Method and Description |
---|---|
String |
description()
Returns the description of target item.
|
String |
key()
Returns the key name of target item.
|
static JdbcProcess |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcProcess[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcProcess JDBC_SUPPORT
DataModelJdbcSupport
class.public static final JdbcProcess TABLE
public static final JdbcProcess COLUMNS
public static final JdbcProcess CONDITION
public static final JdbcProcess CUSTOM_TRUNCATE
public static final JdbcProcess OPTIONS
JdbcProcess.OptionSymbols
public static final JdbcProcess OPERATION
JdbcProcess.OperationKind
public static JdbcProcess[] values()
for (JdbcProcess c : JdbcProcess.values()) System.out.println(c);
public static JdbcProcess 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 final String key()
ConfigurationItem
key
in interface ConfigurationItem
public String description()
ConfigurationItem
description
in interface ConfigurationItem
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.