-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathModule.php
More file actions
251 lines (230 loc) Β· 8.18 KB
/
Module.php
File metadata and controls
251 lines (230 loc) Β· 8.18 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang;
use PHPJava\Exceptions\NotImplementedException;
// use PHPJava\Packages\java\lang\reflect\AnnotatedElement;
// use PHPJava\Packages\java\lang\annotation\Annotation;
// use PHPJava\Packages\java\util\Set;
/**
* The `Module` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class Module extends Object_ // implements AnnotatedElement, Annotation, Set
{
/**
* If the caller's module is this module then update this module to export the given package to the given module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#addExports
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function addExports($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* If this module has opened a package to at least the caller module then update this module to open the package to the given module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#addOpens
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function addOpens($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* If the caller's module is this module then update this module to read the given module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#addReads
* @param null|mixed $a
* @throws NotImplementedException
*/
public function addReads($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* If the caller's module is this module then update this module to add a service dependence on the given service type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#addUses
* @param null|mixed $a
* @throws NotImplementedException
*/
public function addUses($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Indicates if this module reads the given module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#canRead
* @param null|mixed $a
* @throws NotImplementedException
*/
public function canRead($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Indicates if this module has a service dependence on the given service type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#canUse
* @param null|mixed $a
* @throws NotImplementedException
*/
public function canUse($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns this element's annotation for the specified type if such an annotation is present, else null.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getAnnotation
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getAnnotation($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns annotations that are present on this element.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getAnnotations
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getAnnotations($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the ClassLoader for this module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getClassLoader
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getClassLoader($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns annotations that are directly present on this element.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredAnnotations
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaredAnnotations($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the module descriptor for this module or null if this module is an unnamed module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDescriptor
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDescriptor($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the module layer that contains this module or null if this module is not in a module layer.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getLayer
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getLayer($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the module name or null if this module is an unnamed module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getName
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getName($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the set of package names for the packages in this module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getPackages
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getPackages($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an input stream for reading a resource in this module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getResourceAsStream
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getResourceAsStream($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if this module exports the given package unconditionally.
* Returns true if this module exports the given package to at least the given module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isExported
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function isExported($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if this module is a named module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isNamed
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isNamed($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if this module has opened a package unconditionally.
* Returns true if this module has opened a package to at least the given module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isOpen
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function isOpen($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the string representation of this module.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#toString
* @param null|mixed $a
* @throws NotImplementedException
*/
public function toString($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}