Package com.lazerycode.jmeter.properties
Enum ReservedProperties
- java.lang.Object
-
- java.lang.Enum<ReservedProperties>
-
- com.lazerycode.jmeter.properties.ReservedProperties
-
- All Implemented Interfaces:
Serializable
,Comparable<ReservedProperties>
public enum ReservedProperties extends Enum<ReservedProperties>
An Enum holding a list of reserved properties. Properties configured here may not be set by client configuration.- Author:
- Mark Collin
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JAVA_CLASS_PATH
JMETERENGINE_REMOTE_SYSTEM_EXIT
JMETERENGINE_STOPFAIL_SYSTEM_EXIT
USER_DIR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPropertyKey()
static ReservedProperties
valueOf(String name)
Returns the enum constant of this type with the specified name.static ReservedProperties[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
JAVA_CLASS_PATH
public static final ReservedProperties JAVA_CLASS_PATH
-
USER_DIR
public static final ReservedProperties USER_DIR
-
JMETERENGINE_REMOTE_SYSTEM_EXIT
public static final ReservedProperties JMETERENGINE_REMOTE_SYSTEM_EXIT
-
JMETERENGINE_STOPFAIL_SYSTEM_EXIT
public static final ReservedProperties JMETERENGINE_STOPFAIL_SYSTEM_EXIT
-
-
Method Detail
-
values
public static ReservedProperties[] 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 (ReservedProperties c : ReservedProperties.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReservedProperties 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
-
getPropertyKey
public String getPropertyKey()
-
-