-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathPhpOrient-Protocols-Binary-Data-Record
371 lines (189 loc) · 5.37 KB
/
PhpOrient-Protocols-Binary-Data-Record
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
PhpOrient\Protocols\Binary\Data\Record
===============
* Class name: Record
* Namespace: PhpOrient\Protocols\Binary\Data
* This class implements: ArrayAccess, JsonSerializable, [PhpOrient\Protocols\Binary\Abstracts\SerializableInterface](PhpOrient-Protocols-Binary-Abstracts-SerializableInterface)
Properties
----------
#### $rid
```php
protected \PhpOrient\Protocols\Binary\Data\ID $rid
```
* Visibility: **protected**
#### $oClass
```php
protected string $oClass
```
* Visibility: **protected**
#### $version
```php
protected integer $version
```
* Visibility: **protected**
#### $oData
```php
protected array $oData = array()
```
* Visibility: **protected**
Methods
-------
### getRid
```php
\PhpOrient\Protocols\Binary\Data\ID PhpOrient\Protocols\Binary\Data\Record::getRid()
```
##### Gets the Record ID
* Visibility: **public**
### setRid
```php
\PhpOrient\Protocols\Binary\Data\Record PhpOrient\Protocols\Binary\Data\Record::setRid(\PhpOrient\Protocols\Binary\Data\ID $rid)
```
##### Sets the Record Id
* Visibility: **public**
##### Arguments
* $rid **[PhpOrient\Protocols\Binary\Data\ID](PhpOrient-Protocols-Binary-Data-ID)**
### setOClass
```php
\PhpOrient\Protocols\Binary\Data\Record PhpOrient\Protocols\Binary\Data\Record::setOClass(string $oClass)
```
##### Sets the Orient Class
* Visibility: **public**
##### Arguments
* $oClass **string**
### getOClass
```php
string|null PhpOrient\Protocols\Binary\Data\Record::getOClass()
```
##### Gets the Orient Class
* Visibility: **public**
### setVersion
```php
\PhpOrient\Protocols\Binary\Data\Record PhpOrient\Protocols\Binary\Data\Record::setVersion(integer $version)
```
##### Sets the Version
* Visibility: **public**
##### Arguments
* $version **integer**
### getVersion
```php
integer PhpOrient\Protocols\Binary\Data\Record::getVersion()
```
##### Gets the Version
* Visibility: **public**
### setOData
```php
\PhpOrient\Protocols\Binary\Data\Record PhpOrient\Protocols\Binary\Data\Record::setOData(array $oData)
```
##### Sets the Orient Record Content
* Visibility: **public**
##### Arguments
* $oData **array**
### getOData
```php
string PhpOrient\Protocols\Binary\Data\Record::getOData()
```
##### Gets the Orient Record Content
* Visibility: **public**
### recordSerialize
```php
mixed PhpOrient\Protocols\Binary\Abstracts\SerializableInterface::recordSerialize()
```
##### Return a representation of the class that can be serialized as an
OrientDB record.
* Visibility: **public**
* This method is defined by [PhpOrient\Protocols\Binary\Abstracts\SerializableInterface](PhpOrient-Protocols-Binary-Abstracts-SerializableInterface)
### jsonSerialize
```php
mixed PhpOrient\Protocols\Binary\Data\Record::jsonSerialize()
```
##### (PHP 5 >= 5.4.0)<br/>
Specify data which should be serialized to JSON
* Visibility: **public**
### __toString
```php
string PhpOrient\Protocols\Binary\Data\Record::__toString()
```
##### To String ( as alias of json_encode )
* Visibility: **public**
### offsetExists
```php
boolean PhpOrient\Protocols\Binary\Data\Record::offsetExists(mixed $offset)
```
##### (PHP 5 >= 5.0.0)<br/>
Whether a offset exists
* Visibility: **public**
##### Arguments
* $offset **mixed** <p>
An offset to check for.
</p>
### offsetGet
```php
mixed PhpOrient\Protocols\Binary\Data\Record::offsetGet(mixed $offset)
```
##### (PHP 5 >= 5.0.0)<br/>
Offset to retrieve
* Visibility: **public**
##### Arguments
* $offset **mixed** <p>
The offset to retrieve.
</p>
### offsetSet
```php
void PhpOrient\Protocols\Binary\Data\Record::offsetSet(mixed $offset, mixed $value)
```
##### (PHP 5 >= 5.0.0)<br/>
Offset to set
* Visibility: **public**
##### Arguments
* $offset **mixed** <p>
The offset to assign the value to.
</p>
* $value **mixed** <p>
The value to set.
</p>
### offsetUnset
```php
void PhpOrient\Protocols\Binary\Data\Record::offsetUnset(mixed $offset)
```
##### (PHP 5 >= 5.0.0)<br/>
Offset to unset
* Visibility: **public**
##### Arguments
* $offset **mixed** <p>
The offset to unset.
</p>
### __get
```php
mixed PhpOrient\Protocols\Binary\Data\Record::__get($name)
```
##### Magic Method, access directly to the Orient Record
content as property
* Visibility: **public**
##### Arguments
* $name **mixed**
### __set
```php
mixed PhpOrient\Protocols\Binary\Data\Record::__set($name, $value)
```
##### Magic Method, set directly to the Orient Record
content as property
* Visibility: **public**
##### Arguments
* $name **mixed**
* $value **mixed**
### configure
```php
\PhpOrient\Protocols\Binary\Data\Record PhpOrient\Protocols\Binary\Data\Record::configure(array $options)
```
##### Configure the object.
* Visibility: **public**
##### Arguments
* $options **array** <p>The options for the object.</p>
### fromConfig
```php
static PhpOrient\Protocols\Binary\Data\Record::fromConfig(array $options)
```
##### Return a new class instance configured from the given options.
* Visibility: **public**
* This method is **static**.
##### Arguments
* $options **array** <p>The options for the newly created class instance.</p>