Package jadx.gui.ui.dialog
Enum SearchDialog.SearchOptions
- java.lang.Object
-
- java.lang.Enum<SearchDialog.SearchOptions>
-
- jadx.gui.ui.dialog.SearchDialog.SearchOptions
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<SearchDialog.SearchOptions>
- Enclosing class:
- SearchDialog
public static enum SearchDialog.SearchOptions extends java.lang.Enum<SearchDialog.SearchOptions>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE_TABCLASSCODECOMMENTFIELDIGNORE_CASEMETHODRESOURCEUSE_REGEX
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchDialog.SearchOptionsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SearchDialog.SearchOptions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLASS
public static final SearchDialog.SearchOptions CLASS
-
METHOD
public static final SearchDialog.SearchOptions METHOD
-
FIELD
public static final SearchDialog.SearchOptions FIELD
-
CODE
public static final SearchDialog.SearchOptions CODE
-
RESOURCE
public static final SearchDialog.SearchOptions RESOURCE
-
COMMENT
public static final SearchDialog.SearchOptions COMMENT
-
IGNORE_CASE
public static final SearchDialog.SearchOptions IGNORE_CASE
-
USE_REGEX
public static final SearchDialog.SearchOptions USE_REGEX
-
ACTIVE_TAB
public static final SearchDialog.SearchOptions ACTIVE_TAB
-
-
Method Detail
-
values
public static SearchDialog.SearchOptions[] 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 (SearchDialog.SearchOptions c : SearchDialog.SearchOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchDialog.SearchOptions 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
-
-