-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathDataOutput.php
More file actions
147 lines (134 loc) Β· 4.74 KB
/
DataOutput.php
File metadata and controls
147 lines (134 loc) Β· 4.74 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\io;
use PHPJava\Exceptions\NotImplementedException;
/**
* The `DataOutput` interface was auto generated.
*/
interface DataOutput
{
/**
* Writes to the output stream all the bytes in array b.
* Writes len bytes from array b, in order, to the output stream.
* Writes to the output stream the eight low-order bits of the argument b.
*
* @param mixed $a
* @param mixed $b
* @param mixed $c
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#write
* @NotImplemented
*/
// public function write($a = null, $b = null, $c = null)
/**
* Writes a boolean value to this output stream.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeBoolean
* @NotImplemented
*/
// public function writeBoolean($a = null)
/**
* Writes to the output stream the eight low- order bits of the argument v.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeByte
* @NotImplemented
*/
// public function writeByte($a = null)
/**
* Writes a string to the output stream.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeBytes
* @NotImplemented
*/
// public function writeBytes($a = null)
/**
* Writes a char value, which is comprised of two bytes, to the output stream.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeChar
* @NotImplemented
*/
// public function writeChar($a = null)
/**
* Writes every character in the string s, to the output stream, in order, two bytes per character.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeChars
* @NotImplemented
*/
// public function writeChars($a = null)
/**
* Writes a double value, which is comprised of eight bytes, to the output stream.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeDouble
* @NotImplemented
*/
// public function writeDouble($a = null)
/**
* Writes a float value, which is comprised of four bytes, to the output stream.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeFloat
* @NotImplemented
*/
// public function writeFloat($a = null)
/**
* Writes an int value, which is comprised of four bytes, to the output stream.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeInt
* @NotImplemented
*/
// public function writeInt($a = null)
/**
* Writes a long value, which is comprised of eight bytes, to the output stream.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeLong
* @NotImplemented
*/
// public function writeLong($a = null)
/**
* Writes two bytes to the output stream to represent the value of the argument.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeShort
* @NotImplemented
*/
// public function writeShort($a = null)
/**
* Writes two bytes of length information to the output stream, followed by the modified UTF-8 representation of every character in the string s.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#writeUTF
* @NotImplemented
*/
// public function writeUTF($a = null)
}