Trait luya\web\jsonld\PropertyValueTrait
Uses Traits | luya\web\jsonld\ThingTrait |
---|---|
Implemented by | luya\web\jsonld\PropertyValue |
Available since version | 1.0.3 |
Source Code | https://github.com/luyadev/luya/blob/master/core/web/jsonld/PropertyValueTrait.php |
JsonLd PropertyValue.
See also http://schema.org/PropertyValue.
Public Methods
Method Details
Getter method for maxValue
public void getMaxValue ( ) |
public function getMaxValue()
{
return $this->_maxValue;
}
Getter method for measurement Technique.
public void getMeasurementTechnique ( ) |
public function getMeasurementTechnique()
{
return $this->_measurementTechnique;
}
Getter method for minValue.
public void getMinValue ( ) |
public function getMinValue()
{
return $this->_minValue;
}
Getter method for propertyId.
public void getPropertyID ( ) |
public function getPropertyID()
{
return $this->_propertyId;
}
Getter method for unitCode.
public void getUnitCode ( ) |
public function getUnitCode()
{
return $this->_unitCode;
}
Getter method for unitText.
public void getUnitText ( ) |
public function getUnitText()
{
return $this->_unitText;
}
Getter method for value.
public void getValue ( ) |
public function getValue()
{
return $this->_value;
}
Setter method for maxValue.
public static setMaxValue ( $maxValue ) | ||
$maxValue | string |
public function setMaxValue($maxValue)
{
$this->_maxValue = $maxValue;
return $this;
}
Setter method for measurement Technique.
public static setMeasurementTechnique ( $measurementTechnique ) | ||
$measurementTechnique | string |
public function setMeasurementTechnique($measurementTechnique)
{
$this->_measurementTechnique = $measurementTechnique;
return $this;
}
Setter method for minValue.
public static setMinValue ( $minValue ) | ||
$minValue | string |
public function setMinValue($minValue)
{
$this->_minValue = $minValue;
return $this;
}
Setter method for propertyId.
public static setPropertyID ( $propertyID ) | ||
$propertyID | string |
public function setPropertyID($propertyID)
{
$this->_propertyId = $propertyID;
return $this;
}
Setter method for unitCode.
public static setUnitCode ( $unitCode ) | ||
$unitCode | string |
public function setUnitCode($unitCode)
{
$this->_unitCode = $unitCode;
return $this;
}
Setter method for unitText.
public static setUnitText ( $uniText ) | ||
$uniText | string |
public function setUnitText($uniText)
{
$this->_unitText = $uniText;
return $this;
}