Enum ContentStoreCleaner.DeleteFailureAction

    • Enum Constant Detail

      • IGNORE

        public static final ContentStoreCleaner.DeleteFailureAction IGNORE
        Failure to clean up a binary is logged, but the URL is discarded for good i.e. there will be no further attempt to clean up the binary or any remaining record of its existence.
      • KEEP_URL

        public static final ContentStoreCleaner.DeleteFailureAction KEEP_URL
        Failure to clean up the binary is logged and then a URL record is created with a orphan time of 0; there will be no further attempts to delete the URL binary, but the record will also not be destroyed.
    • Method Detail

      • values

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

        public static ContentStoreCleaner.DeleteFailureAction 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