Enum JMeterCommandLineArguments
- java.lang.Object
-
- java.lang.Enum<JMeterCommandLineArguments>
-
- com.lazerycode.jmeter.configuration.JMeterCommandLineArguments
-
- All Implemented Interfaces:
Serializable
,Comparable<JMeterCommandLineArguments>
public enum JMeterCommandLineArguments extends Enum<JMeterCommandLineArguments>
An Enum holding all of the command line arguments accepted by JMeter The values are defined in a specific order to ensure the order attributes are applied to the command line.- Author:
- Mark Collin
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getCommandLineArgument()
static JMeterCommandLineArguments
valueOf(String name)
Returns the enum constant of this type with the specified name.static JMeterCommandLineArguments[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROXY_PASSWORD
public static final JMeterCommandLineArguments PROXY_PASSWORD
-
JMETER_HOME_OPT
public static final JMeterCommandLineArguments JMETER_HOME_OPT
-
REPORT_AT_END_OPT
public static final JMeterCommandLineArguments REPORT_AT_END_OPT
-
HELP_OPT
public static final JMeterCommandLineArguments HELP_OPT
-
REPORT_GENERATING_OPT
public static final JMeterCommandLineArguments REPORT_GENERATING_OPT
-
SERVER_OPT
public static final JMeterCommandLineArguments SERVER_OPT
-
JMLOGFILE_OPT
public static final JMeterCommandLineArguments JMLOGFILE_OPT
-
LOGFILE_OPT
public static final JMeterCommandLineArguments LOGFILE_OPT
-
NONGUI_OPT
public static final JMeterCommandLineArguments NONGUI_OPT
-
REPORT_OUTPUT_FOLDER_OPT
public static final JMeterCommandLineArguments REPORT_OUTPUT_FOLDER_OPT
-
PROPFILE_OPT
public static final JMeterCommandLineArguments PROPFILE_OPT
-
PROPFILE2_OPT
public static final JMeterCommandLineArguments PROPFILE2_OPT
-
REMOTE_OPT
public static final JMeterCommandLineArguments REMOTE_OPT
-
TESTFILE_OPT
public static final JMeterCommandLineArguments TESTFILE_OPT
-
PROXY_USERNAME
public static final JMeterCommandLineArguments PROXY_USERNAME
-
VERSION_OPT
public static final JMeterCommandLineArguments VERSION_OPT
-
SYSTEM_PROPERTY
public static final JMeterCommandLineArguments SYSTEM_PROPERTY
-
JMETER_GLOBAL_PROP
public static final JMeterCommandLineArguments JMETER_GLOBAL_PROP
-
PROXY_HOST
public static final JMeterCommandLineArguments PROXY_HOST
-
JMETER_PROPERTY
public static final JMeterCommandLineArguments JMETER_PROPERTY
-
LOGLEVEL
public static final JMeterCommandLineArguments LOGLEVEL
-
NONPROXY_HOSTS
public static final JMeterCommandLineArguments NONPROXY_HOSTS
-
PROXY_PORT
public static final JMeterCommandLineArguments PROXY_PORT
-
REMOTE_OPT_PARAM
public static final JMeterCommandLineArguments REMOTE_OPT_PARAM
-
SYSTEM_PROPFILE
public static final JMeterCommandLineArguments SYSTEM_PROPFILE
-
REMOTE_STOP
public static final JMeterCommandLineArguments REMOTE_STOP
-
-
Method Detail
-
values
public static JMeterCommandLineArguments[] 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 (JMeterCommandLineArguments c : JMeterCommandLineArguments.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static JMeterCommandLineArguments valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getCommandLineArgument
public String getCommandLineArgument()
-
-