Package jadx.api.args

Enum UserRenamesMappingsMode

    • Enum Constant Detail

      • 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
    • Method Detail

      • values

        public static UserRenamesMappingsMode[] 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 (UserRenamesMappingsMode c : UserRenamesMappingsMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static UserRenamesMappingsMode 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 name
        java.lang.NullPointerException - if the argument is null
      • shouldRead

        public boolean shouldRead()
      • shouldWrite

        public boolean shouldWrite()