java.lang.Object org.apache.jmeter.protocol.java.sampler.JavaSamplerContext
Constructor Summary | |
---|---|
JavaSamplerContext(Arguments args) Create a new JavaSampler with the specified initialization parameters. |
Method Summary | |
---|---|
boolean |
containsParameter(String name) Determine whether or not a value has been specified for the parameter with this name.//判斷該name是否已被定義 |
int |
getIntParameter(String name) Get the value of a specified parameter as an integer. |
int |
getIntParameter(String name, int defaultValue) Get the value of a specified parameter as an integer, or return the specified default value if the value was not specified or is not an integer. |
long |
getLongParameter(String name) Get the value of a specified parameter as a long. |
long |
getLongParameter(String name, long defaultValue) Get the value of a specified parameter as along, or return the specified default value if the value was not specified or is not a long. |
String |
getParameter(String name) Get the value of a specific parameter as a String, or null if the value was not specified. |
String |
getParameter(String name, String defaultValue) Get the value of a specified parameter as a String, or return the specified default value if the value was not specified. |
Iterator<String> |
getParameterNamesIterator() Get an iterator of the parameter names. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |