public enum QueryKeyword extends Enum<QueryKeyword>
| Enum Constant and Description |
|---|
COUNT |
EXPAND |
FILTER |
ORDER_BY |
SELECT |
SKIP |
TOP |
| Modifier and Type | Method and Description |
|---|---|
String |
getKeyword() |
int |
getOrder() |
static QueryKeyword |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryKeyword[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryKeyword ORDER_BY
public static final QueryKeyword TOP
public static final QueryKeyword SKIP
public static final QueryKeyword COUNT
public static final QueryKeyword EXPAND
public static final QueryKeyword FILTER
public static final QueryKeyword SELECT
public static QueryKeyword[] values()
for (QueryKeyword c : QueryKeyword.values()) System.out.println(c);
public static QueryKeyword 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 nullpublic String getKeyword()
public int getOrder()
Copyright © 2021. All rights reserved.