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