-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathDataInputStream.php
More file actions
205 lines (188 loc) Β· 6.64 KB
/
DataInputStream.php
File metadata and controls
205 lines (188 loc) Β· 6.64 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\io;
use PHPJava\Exceptions\NotImplementedException;
// use PHPJava\Packages\java\io\DataInput;
// use PHPJava\Packages\java\lang\AutoCloseable;
/**
* The `DataInputStream` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
* @parent \PHPJava\Packages\java\io\InputStream
* @parent \PHPJava\Packages\java\io\FilterInputStream
*/
class DataInputStream extends FilterInputStream // implements DataInput, AutoCloseable
{
/**
* Reads some number of bytes from the contained input stream and stores them into the buffer array b.
* Reads up to len bytes of data from the contained input stream 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__);
}
/**
* See the general contract of the readBoolean method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readByte method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readChar method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readDouble method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readFloat method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readFully method of DataInput.
* See the general contract of the readFully method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readInt method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readLong method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readShort method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readUnsignedByte method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readUnsignedShort method of DataInput.
*
* @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__);
}
/**
* See the general contract of the readUTF method of DataInput.
* Reads from the stream in a representation of a Unicode character string encoded in modified UTF-8 format; this string of characters is then returned as a String.
*
* @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 static function static_readUTF($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* See the general contract of the skipBytes method of DataInput.
*
* @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__);
}
}