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