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