-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathMethodHandleInfo.php
More file actions
115 lines (105 loc) Β· 3.9 KB
/
MethodHandleInfo.php
File metadata and controls
115 lines (105 loc) Β· 3.9 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang\invoke;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang;
/**
* The `MethodHandleInfo` interface was auto generated.
*/
interface MethodHandleInfo
{
/**
* Returns the class in which the cracked method handle's underlying member was defined.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#getDeclaringClass
* @NotImplemented
*/
// public function getDeclaringClass($a = null)
/**
* Returns the nominal type of the cracked symbolic reference, expressed as a method type.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#getMethodType
* @NotImplemented
*/
// public function getMethodType($a = null)
/**
* Returns the access modifiers of the underlying member.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#getModifiers
* @NotImplemented
*/
// public function getModifiers($a = null)
/**
* Returns the name of the cracked method handle's underlying member.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#getName
* @NotImplemented
*/
// public function getName($a = null)
/**
* Returns the reference kind of the cracked method handle, which in turn determines whether the method handle's underlying member was a constructor, method, or field.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#getReferenceKind
* @NotImplemented
*/
// public function getReferenceKind($a = null)
/**
* Determines if the underlying member was a variable arity method or constructor.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#isVarArgs
* @NotImplemented
*/
// public function isVarArgs($a = null)
/**
* Returns the descriptive name of the given reference kind, as defined in the table above.
*
* @param mixed $a
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#referenceKindToString
* @NotImplemented
*/
// public static function referenceKindToString($a = null)
/**
* Reflects the underlying member as a method, constructor, or field object.
*
* @param mixed $a
* @param mixed $b
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#reflectAs
* @NotImplemented
*/
// public function reflectAs($a = null, $b = null)
/**
* Returns a string representation for a MethodHandleInfo, given the four parts of its symbolic reference.
*
* @param mixed $a
* @param mixed $b
* @param mixed $c
* @param mixed $d
* @throws NotImplementedException
* @return mixed
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/invoke/package-summary.html#toString
* @NotImplemented
*/
// public static function toString($a = null, $b = null, $c = null, $d = null)
}