Enum OnSampleError

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

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

      Fields 
      Modifier and Type Field Description
      java.lang.String value  
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      java.lang.String value()  
      static OnSampleError valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static OnSampleError[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • ON_SAMPLE_ERROR_CONTINUE

        public static final OnSampleError ON_SAMPLE_ERROR_CONTINUE
        Continue, i.e. ignore sampler errors
      • ON_SAMPLE_ERROR_START_NEXT_LOOP

        public static final OnSampleError ON_SAMPLE_ERROR_START_NEXT_LOOP
        Start next loop for current thread if sampler error occurs.
      • ON_SAMPLE_ERROR_STOPTHREAD

        public static final OnSampleError ON_SAMPLE_ERROR_STOPTHREAD
        Stop current thread if sampler error occurs.
      • ON_SAMPLE_ERROR_STOPTEST

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

        public static final OnSampleError ON_SAMPLE_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.
    • Field Detail

      • value

        public final java.lang.String value
    • Method Detail

      • values

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

        public static OnSampleError 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
      • value

        public java.lang.String value()
      • toString

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