public enum SQLStatementType extends Enum<SQLStatementType>
| Modifier and Type | Method and Description |
|---|---|
static SQLStatementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SQLStatementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SQLStatementType DML
public static final SQLStatementType DDL
public static final SQLStatementType TCL
public static final SQLStatementType DCL
public static final SQLStatementType DAL
public static final SQLStatementType RL
public static SQLStatementType[] values()
for (SQLStatementType c : SQLStatementType.values()) System.out.println(c);
public static SQLStatementType 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 © 2021 The Apache Software Foundation. All rights reserved.