public enum SqlType extends Enum<SqlType>
| Enum Constant and Description |
|---|
DELETE |
INSERT |
PROCEDURE |
SELECT |
UNKNOWN |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
static SqlType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SqlType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SqlType UNKNOWN
public static final SqlType INSERT
public static final SqlType UPDATE
public static final SqlType DELETE
public static final SqlType SELECT
public static final SqlType PROCEDURE
public static SqlType[] values()
for (SqlType c : SqlType.values()) System.out.println(c);
public static SqlType 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 © 2012–2022 jkniv, copyleft code. All rights reserved.