public static enum Parser.QueryPart extends java.lang.Enum<Parser.QueryPart>
Modifier and Type | Method and Description |
---|---|
static Parser.QueryPart |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Parser.QueryPart[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Parser.QueryPart SELECT
public static final Parser.QueryPart FROM
public static final Parser.QueryPart WHERE
public static final Parser.QueryPart ORDER
public static final Parser.QueryPart LIMIT
public static Parser.QueryPart[] values()
for (Parser.QueryPart c : Parser.QueryPart.values()) System.out.println(c);
public static Parser.QueryPart valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.