Package org.fife.ui.hex.swing
Enum HexSearch.HexSearchOptions
- java.lang.Object
-
- java.lang.Enum<HexSearch.HexSearchOptions>
-
- org.fife.ui.hex.swing.HexSearch.HexSearchOptions
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<HexSearch.HexSearchOptions>
- Enclosing class:
- HexSearch
public static enum HexSearch.HexSearchOptions extends java.lang.Enum<HexSearch.HexSearchOptions>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
HexSearchOptions()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static HexSearch.HexSearchOptions
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HexSearch.HexSearchOptions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HEX
public static final HexSearch.HexSearchOptions HEX
-
INT
public static final HexSearch.HexSearchOptions INT
-
TEXT
public static final HexSearch.HexSearchOptions TEXT
-
-
Method Detail
-
values
public static HexSearch.HexSearchOptions[] 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 (HexSearch.HexSearchOptions c : HexSearch.HexSearchOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HexSearch.HexSearchOptions 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
-
-