public enum RestrictedQueryParamsMembers extends Enum<RestrictedQueryParamsMembers>
| Enum Constant and Description |
|---|
fields
List of specified fields to include in models
|
filter
Set of collection's fields used for filtering
|
group
Field to group by the collection
|
include
Additional resources that should be attached to response
|
page
Pagination properties
|
sort
Set of collection's fields used for sorting
|
| Modifier and Type | Method and Description |
|---|---|
static RestrictedQueryParamsMembers |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestrictedQueryParamsMembers[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestrictedQueryParamsMembers filter
public static final RestrictedQueryParamsMembers sort
public static final RestrictedQueryParamsMembers group
public static final RestrictedQueryParamsMembers page
public static final RestrictedQueryParamsMembers fields
public static final RestrictedQueryParamsMembers include
public static RestrictedQueryParamsMembers[] values()
for (RestrictedQueryParamsMembers c : RestrictedQueryParamsMembers.values()) System.out.println(c);
public static RestrictedQueryParamsMembers 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 © 2015. All Rights Reserved.