public enum ApplicationSortStrategy extends Enum<ApplicationSortStrategy>
ApplicationSortStrategy enumeration:
Defines the technique used to sort application folders and bo views
Enum Constant and Description |
---|
LABEL
Label: Sort Application Children by Label
|
POSITION
Position: Sort Application Children by Position
|
Modifier and Type | Method and Description |
---|---|
static ApplicationSortStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationSortStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationSortStrategy LABEL
public static final ApplicationSortStrategy POSITION
public static ApplicationSortStrategy[] values()
for (ApplicationSortStrategy c : ApplicationSortStrategy.values()) System.out.println(c);
public static ApplicationSortStrategy 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.