Enum OptionFlag

java.lang.Object
java.lang.Enum<OptionFlag>
jadx.api.plugins.options.OptionFlag
All Implemented Interfaces:
Serializable, Comparable<OptionFlag>

public enum OptionFlag extends Enum<OptionFlag>
  • Enum Constant Details

    • PER_PROJECT

      public static final OptionFlag PER_PROJECT
      Store in project settings instead global (for jadx-gui)
    • HIDE_IN_GUI

      public static final OptionFlag HIDE_IN_GUI
      Do not show this option in jadx-gui (useful if option is configured with custom ui)
    • DISABLE_IN_GUI

      public static final OptionFlag DISABLE_IN_GUI
      Option will be read-only in jadx-gui (can be used for calculated properties)
    • NOT_CHANGING_CODE

      public static final OptionFlag 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

      public static OptionFlag[] 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

      public static OptionFlag valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null