Package io.github.kingpulse.structs
Enum xdo_search_t.searchmask
- java.lang.Object
-
- java.lang.Enum<xdo_search_t.searchmask>
-
- io.github.kingpulse.structs.xdo_search_t.searchmask
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<xdo_search_t.searchmask>
- Enclosing class:
- xdo_search_t
public static enum xdo_search_t.searchmask extends java.lang.Enum<xdo_search_t.searchmask>
Used for the 'searchmask' field in xdo_search_t
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SEARCH_CLASSSEARCH_CLASSNAMESEARCH_DESKTOPSEARCH_NAMESEARCH_ONLYVISIBLESEARCH_PIDSEARCH_SCREENSEARCH_TITLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetValue()static xdo_search_t.searchmaskvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static xdo_search_t.searchmask[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SEARCH_TITLE
public static final xdo_search_t.searchmask SEARCH_TITLE
-
SEARCH_CLASS
public static final xdo_search_t.searchmask SEARCH_CLASS
-
SEARCH_NAME
public static final xdo_search_t.searchmask SEARCH_NAME
-
SEARCH_PID
public static final xdo_search_t.searchmask SEARCH_PID
-
SEARCH_ONLYVISIBLE
public static final xdo_search_t.searchmask SEARCH_ONLYVISIBLE
-
SEARCH_SCREEN
public static final xdo_search_t.searchmask SEARCH_SCREEN
-
SEARCH_CLASSNAME
public static final xdo_search_t.searchmask SEARCH_CLASSNAME
-
SEARCH_DESKTOP
public static final xdo_search_t.searchmask SEARCH_DESKTOP
-
-
Method Detail
-
values
public static xdo_search_t.searchmask[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (xdo_search_t.searchmask c : xdo_search_t.searchmask.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static xdo_search_t.searchmask valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public long getValue()
-
-