Enum OnError
- java.lang.Object
-
- java.lang.Enum<OnError>
-
- org.anasoid.jmc.core.wrapper.jmc.threads.OnError
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ON_ERROR_BREAK_CURRENT_LOOPON_ERROR_CONTINUEContinue, i.e.ON_ERROR_START_NEXT_ITERATION_OF_CURRENT_LOOPON_ERROR_START_NEXT_THREAD_LOOPStart next loop for current thread if sampler error occurs.ON_ERROR_STOPTESTStop test (all threads) if sampler error occurs, the entire test is stopped at the end of any current samples.ON_ERROR_STOPTEST_NOWStop test NOW (all threads) if sampler error occurs, the entire test is stopped abruptly.ON_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 OnErrorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static OnError[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 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<OnError>
-
-