Package jadx.gui.ui.action
Enum ActionModel
- java.lang.Object
-
- java.lang.Enum<ActionModel>
-
- jadx.gui.ui.action.ActionModel
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ActionModel>
public enum ActionModel extends java.lang.Enum<ActionModel>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description ActionCategorygetCategory()ShortcutgetDefaultShortcut()java.lang.StringgetDescription()javax.swing.ImageIcongetIcon()java.lang.StringgetName()static java.util.List<ActionModel>select(ActionCategory category)static ActionModelvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ActionModel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABOUT
public static final ActionModel ABOUT
-
OPEN
public static final ActionModel OPEN
-
OPEN_PROJECT
public static final ActionModel OPEN_PROJECT
-
ADD_FILES
public static final ActionModel ADD_FILES
-
NEW_PROJECT
public static final ActionModel NEW_PROJECT
-
SAVE_PROJECT
public static final ActionModel SAVE_PROJECT
-
SAVE_PROJECT_AS
public static final ActionModel SAVE_PROJECT_AS
-
RELOAD
public static final ActionModel RELOAD
-
LIVE_RELOAD
public static final ActionModel LIVE_RELOAD
-
SAVE_ALL
public static final ActionModel SAVE_ALL
-
EXPORT
public static final ActionModel EXPORT
-
PREFS
public static final ActionModel PREFS
-
EXIT
public static final ActionModel EXIT
-
SYNC
public static final ActionModel SYNC
-
TEXT_SEARCH
public static final ActionModel TEXT_SEARCH
-
CLASS_SEARCH
public static final ActionModel CLASS_SEARCH
-
COMMENT_SEARCH
public static final ActionModel COMMENT_SEARCH
-
GO_TO_MAIN_ACTIVITY
public static final ActionModel GO_TO_MAIN_ACTIVITY
-
GO_TO_APPLICATION
public static final ActionModel GO_TO_APPLICATION
-
GO_TO_ANDROID_MANIFEST
public static final ActionModel GO_TO_ANDROID_MANIFEST
-
PREVIEW_TAB
public static final ActionModel PREVIEW_TAB
-
DECOMPILE_ALL
public static final ActionModel DECOMPILE_ALL
-
RESET_CACHE
public static final ActionModel RESET_CACHE
-
DEOBF
public static final ActionModel DEOBF
-
SHOW_LOG
public static final ActionModel SHOW_LOG
-
CREATE_DESKTOP_ENTRY
public static final ActionModel CREATE_DESKTOP_ENTRY
-
BACK
public static final ActionModel BACK
-
BACK_V
public static final ActionModel BACK_V
-
FORWARD
public static final ActionModel FORWARD
-
FORWARD_V
public static final ActionModel FORWARD_V
-
QUARK
public static final ActionModel QUARK
-
OPEN_DEVICE
public static final ActionModel OPEN_DEVICE
-
FIND_USAGE
public static final ActionModel FIND_USAGE
-
FIND_USAGE_PLUS
public static final ActionModel FIND_USAGE_PLUS
-
GOTO_DECLARATION
public static final ActionModel GOTO_DECLARATION
-
CODE_COMMENT
public static final ActionModel CODE_COMMENT
-
CODE_COMMENT_SEARCH
public static final ActionModel CODE_COMMENT_SEARCH
-
CODE_RENAME
public static final ActionModel CODE_RENAME
-
FRIDA_COPY
public static final ActionModel FRIDA_COPY
-
XPOSED_COPY
public static final ActionModel XPOSED_COPY
-
JSON_PRETTIFY
public static final ActionModel JSON_PRETTIFY
-
SCRIPT_RUN
public static final ActionModel SCRIPT_RUN
-
SCRIPT_SAVE
public static final ActionModel SCRIPT_SAVE
-
SCRIPT_AUTO_COMPLETE
public static final ActionModel SCRIPT_AUTO_COMPLETE
-
HEX_VIEWER_SHOW_INSPECTOR
public static final ActionModel HEX_VIEWER_SHOW_INSPECTOR
-
HEX_VIEWER_CHANGE_ENCODING
public static final ActionModel HEX_VIEWER_CHANGE_ENCODING
-
HEX_VIEWER_GO_TO_ADDRESS
public static final ActionModel HEX_VIEWER_GO_TO_ADDRESS
-
HEX_VIEWER_FIND
public static final ActionModel HEX_VIEWER_FIND
-
-
Method Detail
-
values
public static ActionModel[] 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 (ActionModel c : ActionModel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionModel 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
-
select
public static java.util.List<ActionModel> select(ActionCategory category)
-
getCategory
public ActionCategory getCategory()
-
getName
public java.lang.String getName()
-
getDescription
public java.lang.String getDescription()
-
getIcon
public javax.swing.ImageIcon getIcon()
-
getDefaultShortcut
public Shortcut getDefaultShortcut()
-
-