Enum OnError

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<OnError>

    @XStreamConverter(com.thoughtworks.xstream.converters.enums.EnumToStringConverter.class)
    public enum OnError
    extends java.lang.Enum<OnError>
    Thread group on Sample Error type.
    • Enum Constant Detail

      • ON_ERROR_CONTINUE

        public static final OnError ON_ERROR_CONTINUE
        Continue, i.e. ignore sampler errors
      • ON_ERROR_STOPTHREAD

        public static final OnError ON_ERROR_STOPTHREAD
        Stop current thread if sampler error occurs.
      • ON_ERROR_STOPTEST

        public static final OnError ON_ERROR_STOPTEST
        Stop test (all threads) if sampler error occurs, the entire test is stopped at the end of any current samples.
      • ON_ERROR_STOPTEST_NOW

        public static final OnError ON_ERROR_STOPTEST_NOW
        Stop test NOW (all threads) if sampler error occurs, the entire test is stopped abruptly. Any current samplers are interrupted if possible.
      • ON_ERROR_START_NEXT_THREAD_LOOP

        public static final OnError ON_ERROR_START_NEXT_THREAD_LOOP
        Start next loop for current thread if sampler error occurs.
      • ON_ERROR_START_NEXT_ITERATION_OF_CURRENT_LOOP

        public static final OnError ON_ERROR_START_NEXT_ITERATION_OF_CURRENT_LOOP
      • ON_ERROR_BREAK_CURRENT_LOOP

        public static final OnError ON_ERROR_BREAK_CURRENT_LOOP
    • Method Detail

      • values

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

        public static OnError 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
      • getValue

        public java.lang.String getValue()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<OnError>