public static enum JdbcProcess.OperationKind extends Enum<JdbcProcess.OperationKind>
Enum Constant and Description |
---|
INSERT
Attempts to insert all.
|
INSERT_AFTER_TRUNCATE
Truncates target table and then inserts rows.
|
Modifier and Type | Method and Description |
---|---|
static JdbcProcess.OperationKind |
find(String value)
Returns the corresponded kind to the value representation.
|
String |
value()
Returns the value representation of this kind.
|
static JdbcProcess.OperationKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JdbcProcess.OperationKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JdbcProcess.OperationKind INSERT
public static final JdbcProcess.OperationKind INSERT_AFTER_TRUNCATE
public static JdbcProcess.OperationKind[] values()
for (JdbcProcess.OperationKind c : JdbcProcess.OperationKind.values()) System.out.println(c);
public static JdbcProcess.OperationKind 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 value()
public static JdbcProcess.OperationKind find(String value)
value
- target representationnull
if not foundIllegalArgumentException
- if some parameters were null
Copyright © 2011–2019 Asakusa Framework Team. All rights reserved.