public enum SystemQueryOption extends Enum<SystemQueryOption>
Enum Constant and Description |
---|
$expand |
$filter |
$format |
$inlinecount |
$orderby |
$select |
$skip |
$skiptoken |
$top |
Modifier and Type | Method and Description |
---|---|
static SystemQueryOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemQueryOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemQueryOption $format
public static final SystemQueryOption $filter
public static final SystemQueryOption $inlinecount
public static final SystemQueryOption $orderby
public static final SystemQueryOption $skiptoken
public static final SystemQueryOption $skip
public static final SystemQueryOption $top
public static final SystemQueryOption $expand
public static final SystemQueryOption $select
public static SystemQueryOption[] values()
for (SystemQueryOption c : SystemQueryOption.values()) System.out.println(c);
public static SystemQueryOption 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 nullApache Camel