Package jadx.api.args

Enum UserRenamesMappingsMode

java.lang.Object
java.lang.Enum<UserRenamesMappingsMode>
jadx.api.args.UserRenamesMappingsMode
All Implemented Interfaces:
Serializable, Comparable<UserRenamesMappingsMode>

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

    • READ

      public static final UserRenamesMappingsMode READ
      Just read, user can save manually (default)
    • READ_AND_AUTOSAVE_EVERY_CHANGE

      public static final UserRenamesMappingsMode READ_AND_AUTOSAVE_EVERY_CHANGE
      Read and autosave after every change
    • READ_AND_AUTOSAVE_BEFORE_CLOSING

      public static final UserRenamesMappingsMode READ_AND_AUTOSAVE_BEFORE_CLOSING
      Read and autosave before exiting the app or closing the project
    • IGNORE

      public static final UserRenamesMappingsMode IGNORE
      Don't load and don't save
  • Constructor Details

    • UserRenamesMappingsMode

      private UserRenamesMappingsMode()
  • Method Details

    • values

      public static UserRenamesMappingsMode[] 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 UserRenamesMappingsMode 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
    • getDefault

      public static UserRenamesMappingsMode getDefault()
    • shouldRead

      public boolean shouldRead()
    • shouldWrite

      public boolean shouldWrite()