public static enum ApiParam.Type extends Enum<ApiParam.Type>
| Enum Constant and Description |
|---|
expand |
filter |
limit |
offset |
order |
search |
| Modifier and Type | Method and Description |
|---|---|
static ApiParam.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiParam.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiParam.Type filter
public static final ApiParam.Type expand
public static final ApiParam.Type limit
public static final ApiParam.Type offset
public static final ApiParam.Type search
public static final ApiParam.Type order
public static ApiParam.Type[] values()
for (ApiParam.Type c : ApiParam.Type.values()) System.out.println(c);
public static ApiParam.Type 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 © 2023. All rights reserved.