1 | <?php |
||
18 | class TValueTermType extends IsOK |
||
19 | { |
||
20 | use TFacetAttributesTrait, |
||
21 | GExpressionTrait, |
||
22 | TQualifiedNameTrait, |
||
23 | TSimpleIdentifierTrait, |
||
24 | TWrappedFunctionReturnTypeTrait; |
||
25 | |||
26 | public function __construct() |
||
31 | /** |
||
32 | * @property string $name |
||
33 | */ |
||
34 | private $name = null; |
||
35 | |||
36 | /** |
||
37 | * @property string $type |
||
38 | */ |
||
39 | private $type = null; |
||
40 | |||
41 | /** |
||
42 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType $documentation |
||
43 | */ |
||
44 | private $documentation = null; |
||
45 | |||
46 | /** |
||
47 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TCollectionTypeType $collectionType |
||
48 | */ |
||
49 | private $collectionType = null; |
||
50 | |||
51 | /** |
||
52 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TReferenceTypeType $referenceType |
||
53 | */ |
||
54 | private $referenceType = null; |
||
55 | |||
56 | /** |
||
57 | * @property \AlgoWeb\ODataMetadata\MetadataV3\edm\TPropertyType[] $rowType |
||
58 | */ |
||
59 | private $rowType = null; |
||
60 | |||
61 | /** |
||
62 | * Gets as name |
||
63 | * |
||
64 | * @return string |
||
65 | */ |
||
66 | public function getName() |
||
70 | |||
71 | /** |
||
72 | * Sets a new name |
||
73 | * |
||
74 | * @param string $name |
||
75 | * @return self |
||
76 | */ |
||
77 | public function setName($name) |
||
82 | |||
83 | /** |
||
84 | * Gets as type |
||
85 | * |
||
86 | * @return string |
||
87 | */ |
||
88 | public function getType() |
||
92 | |||
93 | /** |
||
94 | * Sets a new type |
||
95 | * |
||
96 | * @param string $type |
||
97 | * @return self |
||
98 | */ |
||
99 | public function setType($type) |
||
104 | |||
105 | /** |
||
106 | * Gets as documentation |
||
107 | * |
||
108 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType |
||
109 | */ |
||
110 | public function getDocumentation() |
||
114 | |||
115 | /** |
||
116 | * Sets a new documentation |
||
117 | * |
||
118 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TDocumentationType $documentation |
||
119 | * @return self |
||
120 | */ |
||
121 | public function setDocumentation(TDocumentationType $documentation) |
||
126 | |||
127 | /** |
||
128 | * Gets as collectionType |
||
129 | * |
||
130 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TCollectionTypeType |
||
131 | */ |
||
132 | public function getCollectionType() |
||
136 | |||
137 | /** |
||
138 | * Sets a new collectionType |
||
139 | * |
||
140 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TCollectionTypeType $collectionType |
||
141 | * @return self |
||
142 | */ |
||
143 | public function setCollectionType(TCollectionTypeType $collectionType) |
||
148 | |||
149 | /** |
||
150 | * Gets as referenceType |
||
151 | * |
||
152 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TReferenceTypeType |
||
153 | */ |
||
154 | public function getReferenceType() |
||
158 | |||
159 | /** |
||
160 | * Sets a new referenceType |
||
161 | * |
||
162 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TReferenceTypeType $referenceType |
||
163 | * @return self |
||
164 | */ |
||
165 | public function setReferenceType(TReferenceTypeType $referenceType) |
||
170 | |||
171 | /** |
||
172 | * Adds as property |
||
173 | * |
||
174 | * @return self |
||
175 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TPropertyType $property |
||
176 | */ |
||
177 | public function addToRowType(TPropertyType $property) |
||
182 | |||
183 | /** |
||
184 | * isset rowType |
||
185 | * |
||
186 | * @param scalar $index |
||
187 | * @return boolean |
||
188 | */ |
||
189 | public function issetRowType($index) |
||
193 | |||
194 | /** |
||
195 | * unset rowType |
||
196 | * |
||
197 | * @param scalar $index |
||
198 | * @return void |
||
199 | */ |
||
200 | public function unsetRowType($index) |
||
204 | |||
205 | /** |
||
206 | * Gets as rowType |
||
207 | * |
||
208 | * @return \AlgoWeb\ODataMetadata\MetadataV3\edm\TPropertyType[] |
||
209 | */ |
||
210 | public function getRowType() |
||
214 | |||
215 | /** |
||
216 | * Sets a new rowType |
||
217 | * |
||
218 | * @param \AlgoWeb\ODataMetadata\MetadataV3\edm\TPropertyType[] $rowType |
||
219 | * @return self |
||
220 | */ |
||
221 | public function setRowType(array $rowType) |
||
226 | |||
227 | public function isOK(&$msg = null) |
||
281 | } |
||
282 |