@Published(tag="architect") public static enum DbToDbStepConfig.InsertMode extends java.lang.Enum<DbToDbStepConfig.InsertMode>
Enum Constant and Description |
---|
NORMAL
ノーマルモード
|
ORACLE_DIRECT_PATH
Oracleのダイレクトパスインサートモード
|
Modifier and Type | Method and Description |
---|---|
abstract InsertSqlGenerator |
getInsertSqlGenerator()
INSERT文を生成する
InsertSqlGenerator を取得する。 |
static DbToDbStepConfig.InsertMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DbToDbStepConfig.InsertMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DbToDbStepConfig.InsertMode NORMAL
public static final DbToDbStepConfig.InsertMode ORACLE_DIRECT_PATH
public static DbToDbStepConfig.InsertMode[] values()
for (DbToDbStepConfig.InsertMode c : DbToDbStepConfig.InsertMode.values()) System.out.println(c);
public static DbToDbStepConfig.InsertMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic abstract InsertSqlGenerator getInsertSqlGenerator()
InsertSqlGenerator
を取得する。