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