Class NullProperty
java.lang.Object
org.apache.jmeter.testelement.property.AbstractProperty
org.apache.jmeter.testelement.property.NullProperty
- All Implemented Interfaces:
Serializable
,Cloneable
,Comparable<JMeterProperty>
,JMeterProperty
A null property.
- See Also:
-
Field Summary
Fields inherited from class org.apache.jmeter.testelement.property.AbstractProperty
log
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionclone()
boolean
Returns false if string is invalid or null.double
Returns 0 if string is invalid or null.float
Returns 0 if string is invalid or null.int
Returns 0 if string is invalid or null.long
Returns 0 if string is invalid or null.boolean
Returns whether the property is a running version.void
mergeIn
(JMeterProperty prop) Take the given property object and merge it's value with the current property object.void
recoverRunningVersion
(org.apache.jmeter.testelement.TestElement owner) Tell the property to revert to the state at the time setRunningVersion(true) was called.void
Methods inherited from class org.apache.jmeter.testelement.property.AbstractProperty
compareTo, convertObject, createProperty, equals, getBlankProperty, getBlankProperty, getIterator, getName, getPropertyType, hashCode, isEqualType, makeProperty, normalizeList, normalizeMap, setName, setRunningVersion, toString
-
Constructor Details
-
NullProperty
-
NullProperty
public NullProperty()
-
-
Method Details
-
getStringValue
- See Also:
-
setObjectValue
-
getObjectValue
- See Also:
-
isRunningVersion
public boolean isRunningVersion()Description copied from class:AbstractProperty
Returns whether the property is a running version.- Specified by:
isRunningVersion
in interfaceJMeterProperty
- Overrides:
isRunningVersion
in classAbstractProperty
- Returns:
- flag whether this property is a running version
- See Also:
-
mergeIn
Description copied from class:AbstractProperty
Take the given property object and merge it's value with the current property object. For most property types, this will simply be ignored. But for collection properties and test element properties, more complex behavior is required.- Specified by:
mergeIn
in interfaceJMeterProperty
- Overrides:
mergeIn
in classAbstractProperty
- Parameters:
prop
- the property object to merge into this property- See Also:
-
clone
Description copied from class:AbstractProperty
- Specified by:
clone
in interfaceJMeterProperty
- Overrides:
clone
in classAbstractProperty
-
getBooleanValue
public boolean getBooleanValue()Description copied from class:AbstractProperty
Returns false if string is invalid or null.- Specified by:
getBooleanValue
in interfaceJMeterProperty
- Overrides:
getBooleanValue
in classAbstractProperty
- See Also:
-
getDoubleValue
public double getDoubleValue()Description copied from class:AbstractProperty
Returns 0 if string is invalid or null.- Specified by:
getDoubleValue
in interfaceJMeterProperty
- Overrides:
getDoubleValue
in classAbstractProperty
- See Also:
-
getFloatValue
public float getFloatValue()Description copied from class:AbstractProperty
Returns 0 if string is invalid or null.- Specified by:
getFloatValue
in interfaceJMeterProperty
- Overrides:
getFloatValue
in classAbstractProperty
- See Also:
-
getIntValue
public int getIntValue()Description copied from class:AbstractProperty
Returns 0 if string is invalid or null.- Specified by:
getIntValue
in interfaceJMeterProperty
- Overrides:
getIntValue
in classAbstractProperty
- See Also:
-
getLongValue
public long getLongValue()Description copied from class:AbstractProperty
Returns 0 if string is invalid or null.- Specified by:
getLongValue
in interfaceJMeterProperty
- Overrides:
getLongValue
in classAbstractProperty
- See Also:
-
recoverRunningVersion
public void recoverRunningVersion(org.apache.jmeter.testelement.TestElement owner) Description copied from interface:JMeterProperty
Tell the property to revert to the state at the time setRunningVersion(true) was called.- Parameters:
owner
- the owning element- See Also:
-