-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathMethodHandles.php
More file actions
524 lines (484 loc) Β· 19.7 KB
/
MethodHandles.php
File metadata and controls
524 lines (484 loc) Β· 19.7 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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang\invoke;
use PHPJava\Core\JavaClass;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\invoke\MethodHandles\Lookup;
use PHPJava\Packages\java\lang\Object_;
// use PHPJava\Packages\java\util\_List;
// use PHPJava\Packages\java\lang\reflect\Member;
/**
* The `MethodHandles` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class MethodHandles extends Object_ // implements _List, Member
{
/**
* Produces a method handle constructing arrays of a desired type, as if by the anewarray bytecode.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#arrayConstructor
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function arrayConstructor($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle giving read access to elements of an array, as if by the aaload bytecode.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#arrayElementGetter
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function arrayElementGetter($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle giving write access to elements of an array, as if by the astore bytecode.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#arrayElementSetter
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function arrayElementSetter($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a VarHandle giving access to elements of an array of type arrayClass.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#arrayElementVarHandle
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function arrayElementVarHandle($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle returning the length of an array, as if by the arraylength bytecode.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#arrayLength
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function arrayLength($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a VarHandle giving access to elements of a byte[] array viewed as if it were a different primitive array type, such as int[] or long[].
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#byteArrayViewVarHandle
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function byteArrayViewVarHandle($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a VarHandle giving access to elements of a ByteBuffer viewed as if it were an array of elements of a different primitive component type to that of byte, such as int[] or long[].
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#byteBufferViewVarHandle
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function byteBufferViewVarHandle($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Makes a method handle which adapts a target method handle, by running it inside an exception handler.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#catchException
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function catchException($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Adapts a target method handle by pre-processing a sub-sequence of its arguments with a filter (another method handle).
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#collectArguments
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function collectArguments($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle of the requested return type which returns the given constant value every time it is invoked.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#constant
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function constant($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Constructs a loop that runs a given number of iterations.
* Constructs a loop that counts over a range of numbers.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#countedLoop
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @param null|mixed $d
* @throws NotImplementedException
*/
public static function countedLoop($a = null, $b = null, $c = null, $d = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Constructs a do-while loop from an initializer, a body, and a predicate.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#doWhileLoop
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function doWhileLoop($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle which will discard some dummy arguments before calling some other specified target method handle.
* Produces a method handle which will discard some dummy arguments before calling some other specified target method handle.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#dropArguments
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function dropArguments($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Adapts a target method handle to match the given parameter type list.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#dropArgumentsToMatch
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @param null|mixed $d
* @throws NotImplementedException
*/
public static function dropArgumentsToMatch($a = null, $b = null, $c = null, $d = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle of the requested type which ignores any arguments, does nothing, and returns a suitable default depending on the return type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#empty
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function empty($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a special invoker method handle which can be used to invoke any method handle of the given type, as if by invokeExact.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#exactInvoker
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function exactInvoker($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle which adapts the type of the given method handle to a new type by pairwise argument and return type conversion.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#explicitCastArguments
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function explicitCastArguments($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Adapts a target method handle by pre-processing one or more of its arguments, each with its own unary filter function, and then calling the target with each pre-processed argument replaced by the result of its corresponding filter function.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#filterArguments
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function filterArguments($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Adapts a target method handle by post-processing its return value (if any) with a filter (another method handle).
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#filterReturnValue
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function filterReturnValue($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Adapts a target method handle by pre-processing some of its arguments, starting at a given position, and then calling the target with the result of the pre-processing, inserted into the original sequence of arguments just before the folded arguments.
* Adapts a target method handle by pre-processing some of its arguments, and then calling the target with the result of the pre-processing, inserted into the original sequence of arguments.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#foldArguments
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function foldArguments($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Makes a method handle which adapts a target method handle, by guarding it with a test, a boolean-valued method handle.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#guardWithTest
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function guardWithTest($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle which returns its sole argument when invoked.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#identity
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function identity($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Provides a target method handle with one or more bound arguments in advance of the method handle's invocation.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#insertArguments
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function insertArguments($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a special invoker method handle which can be used to invoke any method handle compatible with the given type, as if by invoke.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#invoker
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function invoker($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Constructs a loop that ranges over the values produced by an Iterator<T>.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#iteratedLoop
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function iteratedLoop($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a lookup object with full capabilities to emulate all supported bytecode behaviors of the caller.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#lookup
* @param null|mixed $a
*/
public static function lookup($a = null)
{
return JavaClass::load(
'java.lang.invoke.MethodHandles.Lookup',
[
'inherit' => true,
]
)->getInvoker()
->construct($a)
->getJavaClass();
}
/**
* Constructs a method handle representing a loop with several loop variables that are updated and checked upon each iteration.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#loop
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function loop($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle which adapts the calling sequence of the given method handle to a new type, by reordering the arguments.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#permuteArguments
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function permuteArguments($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a lookup object with full capabilities to emulate all supported bytecode behaviors, including private access, on a target class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#privateLookupIn
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function privateLookupIn($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a lookup object which is trusted minimally.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#publicLookup
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function publicLookup($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Performs an unchecked "crack" of a direct method handle.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#reflectAs
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function reflectAs($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle which will invoke any method handle of the given type, with a given number of trailing arguments replaced by a single trailing Object[] array.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#spreadInvoker
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function spreadInvoker($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a method handle which will throw exceptions of the given exType.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#throwException
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function throwException($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Makes a method handle that adapts a target method handle by wrapping it in a try-finally block.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#tryFinally
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function tryFinally($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a special invoker method handle which can be used to invoke a signature-polymorphic access mode method on any VarHandle whose associated access mode type is compatible with the given type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#varHandleExactInvoker
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function varHandleExactInvoker($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a special invoker method handle which can be used to invoke a signature-polymorphic access mode method on any VarHandle whose associated access mode type is compatible with the given type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#varHandleInvoker
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function varHandleInvoker($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Constructs a while loop from an initializer, a body, and a predicate.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#whileLoop
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function whileLoop($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Produces a constant method handle of the requested return type which returns the default value for that type every time it is invoked.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#zero
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function zero($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}