Enum InterceptorAction

    • Enum Constant Detail

      • CONTINUE

        public static final InterceptorAction CONTINUE
        Proceed as if the interceptor had not been called; the default for every callback.
      • PAUSE

        public static final InterceptorAction PAUSE
        Suspend at this point, as a breakpoint would, leaving the run resumable.
      • ABORT

        public static final InterceptorAction ABORT
        Stop the run outright rather than resuming later.
    • Method Detail

      • values

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

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