public static enum DXSearch.Ordering extends Enum<DXSearch.Ordering>
| Enum Constant and Description |
|---|
ASCENDING
Search for only visible items.
|
DESCENDING
Search for only hidden items.
|
| Modifier and Type | Method and Description |
|---|---|
static DXSearch.Ordering |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DXSearch.Ordering[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DXSearch.Ordering ASCENDING
public static final DXSearch.Ordering DESCENDING
public static DXSearch.Ordering[] values()
for (DXSearch.Ordering c : DXSearch.Ordering.values()) System.out.println(c);
public static DXSearch.Ordering 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 © 2023. All Rights Reserved.