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