-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCompiler.php
More file actions
73 lines (67 loc) Β· 2.54 KB
/
Compiler.php
File metadata and controls
73 lines (67 loc) Β· 2.54 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang;
use PHPJava\Exceptions\NotImplementedException;
/**
* The `Compiler` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class Compiler extends Object_
{
/**
* Deprecated, for removal: This API element is subject to removal in a future version.Examines the argument type and its fields and perform some documented operation.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#command
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_command($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated, for removal: This API element is subject to removal in a future version.Compiles the specified class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#compileClass
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_compileClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated, for removal: This API element is subject to removal in a future version.Compiles all classes whose name matches the specified string.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#compileClasses
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_compileClasses($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated, for removal: This API element is subject to removal in a future version.Cause the Compiler to cease operation.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#disable
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_disable($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated, for removal: This API element is subject to removal in a future version.Cause the Compiler to resume operation.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#enable
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_enable($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}