-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathFileDescriptor.php
More file actions
59 lines (53 loc) · 1.38 KB
/
FileDescriptor.php
File metadata and controls
59 lines (53 loc) · 1.38 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\io;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
/**
* The `FileDescriptor` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class FileDescriptor extends Object_
{
/**
* A handle to the standard error stream.
*
* @var mixed $err
*/
public static $err = null;
/**
* A handle to the standard input stream.
*
* @var mixed $in
*/
public static $in = null;
/**
* A handle to the standard output stream.
*
* @var mixed $out
*/
public static $out = null;
/**
* Force all system buffers to synchronize with the underlying device.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#sync
* @param null|mixed $a
* @throws NotImplementedException
*/
public function sync($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Tests if this file descriptor object is valid.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/package-summary.html#valid
* @param null|mixed $a
* @throws NotImplementedException
*/
public function valid($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}