Trait luya\web\jsonld\PropertyValueTrait

Uses Traitsluya\web\jsonld\ThingTrait
Implemented byluya\web\jsonld\PropertyValue
Available since version1.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

Hide inherited methods

Method Description Defined By
getMaxValue() Getter method for maxValue luya\web\jsonld\PropertyValueTrait
getMeasurementTechnique() Getter method for measurement Technique. luya\web\jsonld\PropertyValueTrait
getMinValue() Getter method for minValue. luya\web\jsonld\PropertyValueTrait
getPropertyID() Getter method for propertyId. luya\web\jsonld\PropertyValueTrait
getUnitCode() Getter method for unitCode. luya\web\jsonld\PropertyValueTrait
getUnitText() Getter method for unitText. luya\web\jsonld\PropertyValueTrait
getValue() Getter method for value. luya\web\jsonld\PropertyValueTrait
setMaxValue() Setter method for maxValue. luya\web\jsonld\PropertyValueTrait
setMeasurementTechnique() Setter method for measurement Technique. luya\web\jsonld\PropertyValueTrait
setMinValue() Setter method for minValue. luya\web\jsonld\PropertyValueTrait
setPropertyID() Setter method for propertyId. luya\web\jsonld\PropertyValueTrait
setUnitCode() Setter method for unitCode. luya\web\jsonld\PropertyValueTrait
setUnitText() Setter method for unitText. luya\web\jsonld\PropertyValueTrait
setValue() Setter method for value. luya\web\jsonld\PropertyValueTrait

Method Details

Hide inherited methods

getMaxValue() public method

Getter method for maxValue

public void getMaxValue ( )

                public function getMaxValue()
{
    return $this->_maxValue;
}

            
getMeasurementTechnique() public method

Getter method for measurement Technique.

public void getMeasurementTechnique ( )

                public function getMeasurementTechnique()
{
    return $this->_measurementTechnique;
}

            
getMinValue() public method

Getter method for minValue.

public void getMinValue ( )

                public function getMinValue()
{
    return $this->_minValue;
}

            
getPropertyID() public method

Getter method for propertyId.

public void getPropertyID ( )

                public function getPropertyID()
{
    return $this->_propertyId;
}

            
getUnitCode() public method

Getter method for unitCode.

public void getUnitCode ( )

                public function getUnitCode()
{
    return $this->_unitCode;
}

            
getUnitText() public method

Getter method for unitText.

public void getUnitText ( )

                public function getUnitText()
{
    return $this->_unitText;
}

            
getValue() public method

Getter method for value.

public void getValue ( )

                public function getValue()
{
    return $this->_value;
}

            
setMaxValue() public method

Setter method for maxValue.

public static setMaxValue ( $maxValue )
$maxValue string

                public function setMaxValue($maxValue)
{
    $this->_maxValue = $maxValue;
    
    return $this;
}

            
setMeasurementTechnique() public method

Setter method for measurement Technique.

public static setMeasurementTechnique ( $measurementTechnique )
$measurementTechnique string

                public function setMeasurementTechnique($measurementTechnique)
{
    $this->_measurementTechnique = $measurementTechnique;
    
    return $this;
}

            
setMinValue() public method

Setter method for minValue.

public static setMinValue ( $minValue )
$minValue string

                public function setMinValue($minValue)
{
    $this->_minValue = $minValue;
   
    return $this;
}

            
setPropertyID() public method

Setter method for propertyId.

public static setPropertyID ( $propertyID )
$propertyID string

                public function setPropertyID($propertyID)
{
    $this->_propertyId = $propertyID;
    
    return $this;
}

            
setUnitCode() public method

Setter method for unitCode.

public static setUnitCode ( $unitCode )
$unitCode string

                public function setUnitCode($unitCode)
{
    $this->_unitCode = $unitCode;
    
    return $this;
}

            
setUnitText() public method

Setter method for unitText.

public static setUnitText ( $uniText )
$uniText string

                public function setUnitText($uniText)
{
    $this->_unitText = $uniText;
    
    return $this;
}

            
setValue() public method

Setter method for value.

public static setValue ( $value )
$value string

                public function setValue($value)
{
    $this->_value = $value;
    
    return $this;
}