Jake Vanderwerf
2026-03-03 772462eeca3002a1d52508aeba485aab2b4742ad
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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;
}