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