Enum InterruptReason

    • Enum Constant Detail

      • STOPPED_BY_USER

        public static final InterruptReason STOPPED_BY_USER
        cleanup was interrupted by user
      • STOPPED_BY_SYSTEM

        public static final InterruptReason STOPPED_BY_SYSTEM
        cleanup was interrupted by system, for example, if server shutdown initiated
      • TIMEOUT

        public static final InterruptReason TIMEOUT
        cleanup was interrupted by system because execution timeout is exceeded
      • CLEANUP_ERROR

        public static final InterruptReason CLEANUP_ERROR
        cleanup was interrupted by unexpected exception
      • PROCESS_KILLED

        public static final InterruptReason PROCESS_KILLED
        cleanup was interrupted by system - java process was killed
    • Method Detail

      • values

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

        public static InterruptReason 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