<?php
|
namespace JVBase\managers\SEO\render\Thing\Intangible\Enumeration;
|
|
use JVBase\managers\SEO\render\Thing\Intangible\DefinedTerm;
|
use JVBase\managers\SEO\render\Thing\Intangible\StructuredValue\PropertyValue;
|
use JVBase\managers\SEO\render\Thing\Intangible\StructuredValue\QuantitativeValue;
|
use JVBase\managers\SEO\render\Thing\Intangible\StructuredValue\StructuredValue;
|
use JVBase\managers\SEO\render\Traits\_Properties\additionalPropertyTrait;
|
|
|
if (!defined('ABSPATH')) {
|
exit;
|
}
|
|
class QualitativeValue extends Enumeration {
|
use additionalPropertyTrait;
|
|
/**
|
* @var QualitativeValue This ordering relation for qualitative values indicates that the subject is equal to the object.
|
*/
|
protected QualitativeValue $equal;
|
/**
|
* @var QualitativeValue This ordering relation for qualitative values indicates that the subject is greater than the object.
|
*/
|
protected QualitativeValue $greater;
|
/**
|
* @var QualitativeValue This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.
|
*/
|
protected QualitativeValue $greaterOrEqual;
|
/**
|
* @var QualitativeValue This ordering relation for qualitative values indicates that the subject is lesser than the object.
|
*/
|
protected QualitativeValue $lesser;
|
/**
|
* @var QualitativeValue This ordering relation for qualitative values indicates that the subject is lesser than or equal to the object.
|
*/
|
protected QualitativeValue $lesserOrEqual;
|
/**
|
* @var QualitativeValue This ordering relation for qualitative values indicates that the subject is not equal to the object.
|
*/
|
protected QualitativeValue $nonEqual;
|
/**
|
* @var DefinedTerm|Enumeration|PropertyValue|QualitativeValue|QuantitativeValue|StructuredValue|string
|
*A secondary value that provides additional information on the original value, e.g. a reference temperature or a type of measurement.
|
*/
|
protected DefinedTerm|Enumeration|PropertyValue|QualitativeValue|QuantitativeValue|StructuredValue|string $valueReference;
|
}
|