Package jadx.gui.ui.action
Enum ActionCategory
- java.lang.Object
-
- java.lang.Enum<ActionCategory>
-
- jadx.gui.ui.action.ActionCategory
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ActionCategory>
public enum ActionCategory extends java.lang.Enum<ActionCategory>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CODE_AREAHEX_VIEWER_MENUMENU_TOOLBARPLUGIN_SCRIPT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()static ActionCategoryvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ActionCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MENU_TOOLBAR
public static final ActionCategory MENU_TOOLBAR
-
CODE_AREA
public static final ActionCategory CODE_AREA
-
PLUGIN_SCRIPT
public static final ActionCategory PLUGIN_SCRIPT
-
HEX_VIEWER_MENU
public static final ActionCategory HEX_VIEWER_MENU
-
-
Method Detail
-
values
public static ActionCategory[] 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 (ActionCategory c : ActionCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionCategory 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
-
getName
public java.lang.String getName()
-
-