public static enum DslCsvDataSet.Sharing extends Enum<DslCsvDataSet.Sharing> implements EnumParam.EnumPropertyValue
| Enum Constant and Description |
|---|
ALL_THREADS
All threads in the test plan will share the CSV file, meaning that any thread iteration will
consume an entry from it.
|
THREAD
CSV file consumption is isolated per thread.
|
THREAD_GROUP
CSV file consumption is only shared within thread groups.
|
| Modifier and Type | Method and Description |
|---|---|
String |
propertyValue() |
static DslCsvDataSet.Sharing |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DslCsvDataSet.Sharing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DslCsvDataSet.Sharing ALL_THREADS
public static final DslCsvDataSet.Sharing THREAD_GROUP
public static final DslCsvDataSet.Sharing THREAD
public static DslCsvDataSet.Sharing[] values()
for (DslCsvDataSet.Sharing c : DslCsvDataSet.Sharing.values()) System.out.println(c);
public static DslCsvDataSet.Sharing 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.