-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathObjectInputStream.php
More file actions
396 lines (363 loc) Β· 12.3 KB
/
ObjectInputStream.php
File metadata and controls
396 lines (363 loc) Β· 12.3 KB
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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\io;
use PHPJava\Exceptions\NotImplementedException;
// use PHPJava\Packages\java\io\ObjectInputFilter;
// use PHPJava\Packages\java\lang\AutoCloseable;
/**
* The `ObjectInputStream` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
* @parent \PHPJava\Packages\java\io\InputStream
*/
class ObjectInputStream extends InputStream // implements ObjectInputFilter, AutoCloseable
{
/**
* Returns the number of bytes that can be read without blocking.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#available
* @param null|mixed $a
* @throws NotImplementedException
*/
public function available($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Closes the input stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#close
* @param null|mixed $a
* @throws NotImplementedException
*/
public function close($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Read the non-static and non-transient fields of the current class from this stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#defaultReadObject
* @param null|mixed $a
* @throws NotImplementedException
*/
public function defaultReadObject($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Enables the stream to do replacement of objects read from the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#enableResolveObject
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function enableResolveObject($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the serialization filter for this stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#getObjectInputFilter
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getObjectInputFilter($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a byte of data.
* Reads into an array of bytes.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#read
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public function read($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads in a boolean.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readBoolean
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readBoolean($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads an 8 bit byte.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readByte
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readByte($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a 16 bit char.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readChar
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readChar($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Read a class descriptor from the serialization stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readClassDescriptor
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function readClassDescriptor($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a 64 bit double.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readDouble
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readDouble($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads the persistent fields from the stream and makes them available by name.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readFields
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readFields($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a 32 bit float.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readFloat
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readFloat($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads bytes, blocking until all bytes are read.
* Reads bytes, blocking until all bytes are read.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readFully
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public function readFully($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a 32 bit int.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readInt
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readInt($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated.This method does not properly convert bytes to characters.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readLine
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readLine($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a 64 bit long.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readLong
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readLong($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Read an object from the ObjectInputStream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readObject
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readObject($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* This method is called by trusted subclasses of ObjectOutputStream that constructed ObjectOutputStream using the protected no-arg constructor.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readObjectOverride
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function readObjectOverride($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a 16 bit short.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readShort
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readShort($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* The readStreamHeader method is provided to allow subclasses to read and verify their own stream headers.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readStreamHeader
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function readStreamHeader($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads an "unshared" object from the ObjectInputStream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readUnshared
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readUnshared($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads an unsigned 8 bit byte.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readUnsignedByte
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readUnsignedByte($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads an unsigned 16 bit short.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readUnsignedShort
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readUnsignedShort($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reads a String in modified UTF-8 format.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#readUTF
* @param null|mixed $a
* @throws NotImplementedException
*/
public function readUTF($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Register an object to be validated before the graph is returned.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#registerValidation
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function registerValidation($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Load the local class equivalent of the specified stream class description.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#resolveClass
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function resolveClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* This method will allow trusted subclasses of ObjectInputStream to substitute one object for another during deserialization.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#resolveObject
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function resolveObject($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a proxy class that implements the interfaces named in a proxy class descriptor; subclasses may implement this method to read custom data from the stream along with the descriptors for dynamic proxy classes, allowing them to use an alternate loading mechanism for the interfaces and the proxy class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#resolveProxyClass
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function resolveProxyClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Set the serialization filter for the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#setObjectInputFilter
* @param null|mixed $a
* @throws NotImplementedException
*/
public function setObjectInputFilter($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Skips bytes.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#skipBytes
* @param null|mixed $a
* @throws NotImplementedException
*/
public function skipBytes($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}