-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathObjectOutputStream.php
More file actions
369 lines (338 loc) Β· 11.2 KB
/
ObjectOutputStream.php
File metadata and controls
369 lines (338 loc) Β· 11.2 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\io;
use PHPJava\Exceptions\NotImplementedException;
// use PHPJava\Packages\java\io\DataOutput;
// use PHPJava\Packages\java\lang\AutoCloseable;
/**
* The `ObjectOutputStream` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
* @parent \PHPJava\Packages\java\io\OutputStream
*/
class ObjectOutputStream extends OutputStream // implements DataOutput, AutoCloseable
{
/**
* Subclasses may implement this method to allow class data to be stored in the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#annotateClass
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function annotateClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Subclasses may implement this method to store custom data in the stream along with descriptors for dynamic proxy classes.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#annotateProxyClass
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function annotateProxyClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Closes the 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__);
}
/**
* Write the non-static and non-transient fields of the current class to this stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#defaultWriteObject
* @param null|mixed $a
* @throws NotImplementedException
*/
public function defaultWriteObject($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Drain any buffered data in ObjectOutputStream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#drain
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function drain($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Enables the stream to do replacement of objects written to the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#enableReplaceObject
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function enableReplaceObject($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Flushes the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#flush
* @param null|mixed $a
* @throws NotImplementedException
*/
public function flush($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Retrieve the object used to buffer persistent fields to be written to the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#putFields
* @param null|mixed $a
* @throws NotImplementedException
*/
public function putFields($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* This method will allow trusted subclasses of ObjectOutputStream to substitute one object for another during serialization.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#replaceObject
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function replaceObject($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reset will disregard the state of any objects already written to the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#reset
* @param null|mixed $a
* @throws NotImplementedException
*/
public function reset($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Specify stream protocol version to use when writing the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#useProtocolVersion
* @param null|mixed $a
* @throws NotImplementedException
*/
public function useProtocolVersion($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes an array of bytes.
* Writes a sub array of bytes.
* Writes a byte.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#write
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public function write($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a boolean.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeBoolean
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeBoolean($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes an 8 bit byte.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeByte
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeByte($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a String as a sequence of bytes.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeBytes
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeBytes($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a 16 bit char.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeChar
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeChar($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a String as a sequence of chars.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeChars
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeChars($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Write the specified class descriptor to the ObjectOutputStream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeClassDescriptor
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function writeClassDescriptor($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a 64 bit double.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeDouble
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeDouble($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Write the buffered fields to the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeFields
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeFields($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a 32 bit float.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeFloat
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeFloat($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a 32 bit int.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeInt
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeInt($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a 64 bit long.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeLong
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeLong($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Write the specified object to the ObjectOutputStream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeObject
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeObject($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Method used by subclasses to override the default writeObject method.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeObjectOverride
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function writeObjectOverride($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes a 16 bit short.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeShort
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeShort($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* The writeStreamHeader method is provided so subclasses can append or prepend their own header to the stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeStreamHeader
* @param null|mixed $a
* @throws NotImplementedException
*/
protected function writeStreamHeader($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Writes an "unshared" object to the ObjectOutputStream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeUnshared
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeUnshared($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Primitive data write of this String in modified UTF-8 format.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeUTF
* @param null|mixed $a
* @throws NotImplementedException
*/
public function writeUTF($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}