Class BooleanProperty
java.lang.Object
org.apache.jmeter.testelement.property.AbstractProperty
org.apache.jmeter.testelement.property.BooleanProperty
- All Implemented Interfaces:
- Serializable,- Cloneable,- Comparable<JMeterProperty>,- JMeterProperty
- See Also:
- 
Field SummaryFields inherited from class org.apache.jmeter.testelement.property.AbstractPropertylog
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionclone()booleanReturns false if string is invalid or null.voidrecoverRunningVersion(org.apache.jmeter.testelement.TestElement owner) Tell the property to revert to the state at the time setRunningVersion(true) was called.voidvoidsetRunningVersion(boolean runningVersion) Make the property a running version or turn it off as the running version.Methods inherited from class org.apache.jmeter.testelement.property.AbstractPropertycompareTo, convertObject, createProperty, equals, getBlankProperty, getBlankProperty, getDoubleValue, getFloatValue, getIntValue, getIterator, getLongValue, getName, getPropertyType, hashCode, isEqualType, isRunningVersion, makeProperty, mergeIn, normalizeList, normalizeMap, setName, toString
- 
Constructor Details- 
BooleanProperty
- 
BooleanPropertypublic BooleanProperty()
 
- 
- 
Method Details- 
setObjectValue
- 
getStringValue
- 
getObjectValue
- 
cloneDescription copied from class:AbstractProperty- Specified by:
- clonein interface- JMeterProperty
- Overrides:
- clonein class- AbstractProperty
 
- 
getBooleanValuepublic boolean getBooleanValue()Returns false if string is invalid or null.- Specified by:
- getBooleanValuein interface- JMeterProperty
- Overrides:
- getBooleanValuein class- AbstractProperty
- See Also:
 
- 
setRunningVersionpublic void setRunningVersion(boolean runningVersion) Make the property a running version or turn it off as the running version. A property that is made a running version will preserve the current state in such a way that it is retrievable by a future call to 'recoverRunningVersion()'. Additionally, a property that is a running version will resolve all functions prior to returning it's property value. A non-running version property will return functions as their uncompiled string representation.- Specified by:
- setRunningVersionin interface- JMeterProperty
- Overrides:
- setRunningVersionin class- AbstractProperty
- Parameters:
- runningVersion- flag whether this property is a running version
 
- 
recoverRunningVersionpublic void recoverRunningVersion(org.apache.jmeter.testelement.TestElement owner) Tell the property to revert to the state at the time setRunningVersion(true) was called.- Parameters:
- owner- the owning element
 
 
-