Package jadx.api.plugins.options
Enum OptionFlag
- All Implemented Interfaces:
Serializable,Comparable<OptionFlag>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionOption will be read-only in jadx-gui (can be used for calculated properties)Do not show this option in jadx-gui (useful if option is configured with custom ui)Add this flag only if the option does not affect generated code.Store in project settings instead global (for jadx-gui) -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic OptionFlagReturns the enum constant of this type with the specified name.static OptionFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PER_PROJECT
Store in project settings instead global (for jadx-gui) -
HIDE_IN_GUI
Do not show this option in jadx-gui (useful if option is configured with custom ui) -
DISABLE_IN_GUI
Option will be read-only in jadx-gui (can be used for calculated properties) -
NOT_CHANGING_CODE
Add this flag only if the option does not affect generated code. If added, option value change will not cause code cache reset.
-
-
Constructor Details
-
OptionFlag
private OptionFlag()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-