public enum ApiFavoriteItemOrder extends Enum<ApiFavoriteItemOrder>
Enum Constant and Description |
---|
MODIFIED_DATE
Modified date
|
NAME
Name
|
STARRED_DATE |
Modifier and Type | Method and Description |
---|---|
static ApiFavoriteItemOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiFavoriteItemOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiFavoriteItemOrder STARRED_DATE
public static final ApiFavoriteItemOrder MODIFIED_DATE
public static final ApiFavoriteItemOrder NAME
public static ApiFavoriteItemOrder[] values()
for (ApiFavoriteItemOrder c : ApiFavoriteItemOrder.values()) System.out.println(c);
public static ApiFavoriteItemOrder 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 © 2019. All rights reserved.