-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathSystem.php
More file actions
355 lines (324 loc) Β· 11.2 KB
/
System.php
File metadata and controls
355 lines (324 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang;
use PHPJava\Core\JavaClass;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\PHPJava\Kernel\Behavior\System as SystemBehavior;
// use PHPJava\Packages\java\lang\System\Logger;
// use PHPJava\Packages\java\util\Map;
// use PHPJava\Packages\java\nio\channels\Channel;
/**
* The `System` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class System extends Object_ // implements Logger, Map, Channel
{
/**
* The "standard" error output stream.
*
* @var mixed $err
*/
public static $err = null;
/**
* The "standard" input stream.
*
* @var mixed $in
*/
public static $in = null;
/**
* The "standard" output stream.
*
* @var Object_ $out
*/
public static $out = null;
public static function __staticConstruct()
{
static::$out = JavaClass::load('java.io.PrintStream');
static::$out->getInvoker()->construct();
}
/**
* Copies an array from the specified source array, beginning at the specified position, to the specified position of the destination array.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#arraycopy
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @param null|mixed $d
* @param null|mixed $e
* @throws NotImplementedException
*/
public static function static_arraycopy($a = null, $b = null, $c = null, $d = null, $e = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Removes the system property indicated by the specified key.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#clearProperty
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_clearProperty($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the unique Console object associated with the current Java virtual machine, if any.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#console
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_console($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the current time in milliseconds.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#currentTimeMillis
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_currentTimeMillis($a = null)
{
return time() * 1000;
}
/**
* Terminates the currently running Java Virtual Machine.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#exit
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_exit($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Runs the garbage collector.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#gc
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_gc($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an unmodifiable string map view of the current system environment.
* Gets the value of the specified environment variable.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getenv
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_getenv($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an instance of Logger for the caller's use.
* Returns a localizable instance of Logger for the caller's use.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getLogger
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_getLogger($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Determines the current system properties.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getProperties
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_getProperties($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Gets the system property indicated by the specified key.
* Gets the system property indicated by the specified key.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getProperty
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_getProperty($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Gets the system security interface.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getSecurityManager
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_getSecurityManager($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the same hash code for the given object as would be returned by the default method hashCode(), whether or not the given object's class overrides hashCode().
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/System.html#identityHashCode(java.lang.Object)
* @param null|mixed $a
*/
public static function static_identityHashCode($a = null)
{
return SystemBehavior::identityHashCode($a);
}
/**
* Returns the channel inherited from the entity that created this Java virtual machine.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#inheritedChannel
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_inheritedChannel($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the system-dependent line separator string.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#lineSeparator
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_lineSeparator($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Loads the native library specified by the filename argument.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#load
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_load($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Loads the native library specified by the libname argument.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#loadLibrary
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_loadLibrary($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Maps a library name into a platform-specific string representing a native library.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#mapLibraryName
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_mapLibraryName($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the current value of the running Java Virtual Machine's high-resolution time source, in nanoseconds.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#nanoTime
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_nanoTime($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Runs the finalization methods of any objects pending finalization.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#runFinalization
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_runFinalization($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reassigns the "standard" error output stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#setErr
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_setErr($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reassigns the "standard" input stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#setIn
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_setIn($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reassigns the "standard" output stream.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#setOut
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_setOut($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Sets the system properties to the Properties argument.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#setProperties
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_setProperties($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Sets the system property indicated by the specified key.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#setProperty
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_setProperty($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Sets the System security.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#setSecurityManager
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_setSecurityManager($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}