public static enum BaseThreadGroup.SampleErrorAction extends Enum<BaseThreadGroup.SampleErrorAction> implements EnumParam.EnumPropertyValue
| Enum Constant and Description |
|---|
CONTINUE
Ignores the error and continues execution with the next element in children elements, or
starts a new iteration.
|
START_NEXT_ITERATION
Does not execute following elements in current iteration and jumps to a new iteration.
|
STOP_TEST
Stops the test plan, with all associated threads, when all current samples end.
|
STOP_TEST_NOW
Stops the test plan abruptly, with all associated threads, interrupting current samples.
|
STOP_THREAD
Stops the thread, not executing any further children elements or iterations.
|
| Modifier and Type | Method and Description |
|---|---|
String |
propertyValue() |
static BaseThreadGroup.SampleErrorAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseThreadGroup.SampleErrorAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseThreadGroup.SampleErrorAction CONTINUE
public static final BaseThreadGroup.SampleErrorAction START_NEXT_ITERATION
public static final BaseThreadGroup.SampleErrorAction STOP_THREAD
public static final BaseThreadGroup.SampleErrorAction STOP_TEST
public static final BaseThreadGroup.SampleErrorAction STOP_TEST_NOW
public static BaseThreadGroup.SampleErrorAction[] values()
for (BaseThreadGroup.SampleErrorAction c : BaseThreadGroup.SampleErrorAction.values()) System.out.println(c);
public static BaseThreadGroup.SampleErrorAction valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String propertyValue()
propertyValue in interface EnumParam.EnumPropertyValueCopyright © 2023. All rights reserved.