Enum OnSampleError
- java.lang.Object
-
- java.lang.Enum<OnSampleError>
-
- org.anasoid.jmc.core.wrapper.jmc.threads.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.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ON_SAMPLE_ERROR_CONTINUEContinue, i.e.ON_SAMPLE_ERROR_START_NEXT_LOOPStart next loop for current thread if sampler error occurs.ON_SAMPLE_ERROR_STOPTESTStop test (all threads) if sampler error occurs, the entire test is stopped at the end of any current samples.ON_SAMPLE_ERROR_STOPTEST_NOWStop test NOW (all threads) if sampler error occurs, the entire test is stopped abruptly.ON_SAMPLE_ERROR_STOPTHREADStop current thread if sampler error occurs.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetValue()java.lang.StringtoString()static OnSampleErrorvalueOf(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.
-
-
-
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.
-
-
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 namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<OnSampleError>
-
-