public static enum PBXGroup.SortPolicy extends Enum<PBXGroup.SortPolicy>
Enum Constant and Description |
---|
BY_NAME
By name, in default Java sort order.
|
UNSORTED
Group contents will not be sorted, and will remain in the order they were added.
|
Modifier and Type | Method and Description |
---|---|
static PBXGroup.SortPolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PBXGroup.SortPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PBXGroup.SortPolicy BY_NAME
public static final PBXGroup.SortPolicy UNSORTED
public static PBXGroup.SortPolicy[] values()
for (PBXGroup.SortPolicy c : PBXGroup.SortPolicy.values()) System.out.println(c);
public static PBXGroup.SortPolicy 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 null