com.lazerycode.jmeter.configuration
Enum JMeterCommandLineArguments

java.lang.Object
  extended by java.lang.Enum<JMeterCommandLineArguments>
      extended by 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 ocmmand line.

Author:
Mark Collin

Enum Constant Summary
HELP_OPT
           
JMETER_GLOBAL_PROP
           
JMETER_HOME_OPT
           
JMETER_PROPERTY
           
JMLOGFILE_OPT
           
LOGFILE_OPT
           
LOGLEVEL
           
NONGUI_OPT
           
NONPROXY_HOSTS
           
PROPFILE_OPT
           
PROPFILE2_OPT
           
PROXY_HOST
           
PROXY_PASSWORD
           
PROXY_PORT
           
PROXY_USERNAME
           
REMOTE_OPT
           
REMOTE_OPT_PARAM
           
REMOTE_STOP
           
SERVER_OPT
           
SYSTEM_PROPERTY
           
SYSTEM_PROPFILE
           
TESTFILE_OPT
           
VERSION_OPT
           
 
Method Summary
 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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONGUI_OPT

public static final JMeterCommandLineArguments NONGUI_OPT

TESTFILE_OPT

public static final JMeterCommandLineArguments TESTFILE_OPT

LOGFILE_OPT

public static final JMeterCommandLineArguments LOGFILE_OPT

JMETER_HOME_OPT

public static final JMeterCommandLineArguments JMETER_HOME_OPT

SYSTEM_PROPFILE

public static final JMeterCommandLineArguments SYSTEM_PROPFILE

SYSTEM_PROPERTY

public static final JMeterCommandLineArguments SYSTEM_PROPERTY

JMETER_PROPERTY

public static final JMeterCommandLineArguments JMETER_PROPERTY

JMETER_GLOBAL_PROP

public static final JMeterCommandLineArguments JMETER_GLOBAL_PROP

LOGLEVEL

public static final JMeterCommandLineArguments LOGLEVEL

PROPFILE2_OPT

public static final JMeterCommandLineArguments PROPFILE2_OPT

PROXY_HOST

public static final JMeterCommandLineArguments PROXY_HOST

PROXY_PORT

public static final JMeterCommandLineArguments PROXY_PORT

PROXY_USERNAME

public static final JMeterCommandLineArguments PROXY_USERNAME

PROXY_PASSWORD

public static final JMeterCommandLineArguments PROXY_PASSWORD

NONPROXY_HOSTS

public static final JMeterCommandLineArguments NONPROXY_HOSTS

JMLOGFILE_OPT

public static final JMeterCommandLineArguments JMLOGFILE_OPT

REMOTE_OPT

public static final JMeterCommandLineArguments REMOTE_OPT

REMOTE_OPT_PARAM

public static final JMeterCommandLineArguments REMOTE_OPT_PARAM

REMOTE_STOP

public static final JMeterCommandLineArguments REMOTE_STOP

PROPFILE_OPT

public static final JMeterCommandLineArguments PROPFILE_OPT

SERVER_OPT

public static final JMeterCommandLineArguments SERVER_OPT

VERSION_OPT

public static final JMeterCommandLineArguments VERSION_OPT

HELP_OPT

public static final JMeterCommandLineArguments HELP_OPT
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 name
NullPointerException - if the argument is null

getCommandLineArgument

public String getCommandLineArgument()


Copyright © 2013. All Rights Reserved.