LoadTestingFileType Class

public final class LoadTestingFileType
extends ExpandableStringEnum<LoadTestingFileType>

Types of file supported.

Field Summary

Modifier and Type Field and Description
static final LoadTestingFileType ADDITIONAL_ARTIFACTS

If the file is not among any of the other supported file types.

static final LoadTestingFileType BROWSER_RECORDING

If the file is a browser recording of interactions with web applications.

static final LoadTestingFileType JMX_FILE

If the file is a JMX script.

static final LoadTestingFileType TEST_PLAN_RECOMMENDATIONS

If the file is an AI Recommendations file created by the system containing recommendations to create a load test plan from browser recording.

static final LoadTestingFileType TEST_SCRIPT

If the file is a test script.

static final LoadTestingFileType URL_TEST_CONFIG

If the file is a JSON config file to define the requests for a URL test.

static final LoadTestingFileType USER_PROPERTIES

If the file is a user properties file.

static final LoadTestingFileType ZIPPED_ARTIFACTS

If the file is a compressed archive containing a collection of various artifacts or resources.

Constructor Summary

Constructor Description
LoadTestingFileType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of LoadTestingFileType value.

Method Summary

Modifier and Type Method and Description
static LoadTestingFileType fromString(String name)

Creates or finds a LoadTestingFileType from its string representation.

static Collection<LoadTestingFileType> values()

Gets known LoadTestingFileType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

ADDITIONAL_ARTIFACTS

public static final LoadTestingFileType ADDITIONAL_ARTIFACTS

If the file is not among any of the other supported file types.

BROWSER_RECORDING

public static final LoadTestingFileType BROWSER_RECORDING

If the file is a browser recording of interactions with web applications.

JMX_FILE

public static final LoadTestingFileType JMX_FILE

If the file is a JMX script.

TEST_PLAN_RECOMMENDATIONS

public static final LoadTestingFileType TEST_PLAN_RECOMMENDATIONS

If the file is an AI Recommendations file created by the system containing recommendations to create a load test plan from browser recording.

TEST_SCRIPT

public static final LoadTestingFileType TEST_SCRIPT

If the file is a test script.

URL_TEST_CONFIG

public static final LoadTestingFileType URL_TEST_CONFIG

If the file is a JSON config file to define the requests for a URL test.

USER_PROPERTIES

public static final LoadTestingFileType USER_PROPERTIES

If the file is a user properties file.

ZIPPED_ARTIFACTS

public static final LoadTestingFileType ZIPPED_ARTIFACTS

If the file is a compressed archive containing a collection of various artifacts or resources.

Constructor Details

LoadTestingFileType

@Deprecated
public LoadTestingFileType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of LoadTestingFileType value.

Method Details

fromString

public static LoadTestingFileType fromString(String name)

Creates or finds a LoadTestingFileType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding LoadTestingFileType.

values

public static Collection<LoadTestingFileType> values()

Gets known LoadTestingFileType values.

Returns:

known LoadTestingFileType values.

Applies to