public enum StatementExecuteType extends Enum<StatementExecuteType>
| Enum Constant and Description |
|---|
Execute |
ExecuteBatch |
ExecuteQuery |
ExecuteUpdate |
| Modifier and Type | Method and Description |
|---|---|
static StatementExecuteType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementExecuteType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementExecuteType Execute
public static final StatementExecuteType ExecuteBatch
public static final StatementExecuteType ExecuteQuery
public static final StatementExecuteType ExecuteUpdate
public static StatementExecuteType[] values()
for (StatementExecuteType c : StatementExecuteType.values()) System.out.println(c);
public static StatementExecuteType 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 © 2013–2018 Alibaba Group. All rights reserved.