public static enum DXSearch.VisibilityQuery extends Enum<DXSearch.VisibilityQuery>
| Enum Constant and Description | 
|---|
| EITHERSearch for both hidden and visible items. | 
| HIDDENSearch for only hidden items. | 
| VISIBLESearch 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.