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