1616- ` -> ` [ ` __construct() ` ] ( #method-__construct )
1717- ` -> ` [ ` newInstance() ` ] ( #method-newinstance )
1818- ` -> ` [ ` getConstructor() ` ] ( #method-getconstructor )
19+ - ` -> ` [ ` getDeclaredConstructor() ` ] ( #method-getdeclaredconstructor )
1920- ` -> ` [ ` getMethod() ` ] ( #method-getmethod )
21+ - ` -> ` [ ` getDeclaredMethod() ` ] ( #method-getdeclaredmethod )
2022- ` -> ` [ ` getField() ` ] ( #method-getfield )
23+ - ` -> ` [ ` getDeclaredField() ` ] ( #method-getdeclaredfield )
24+ - ` -> ` [ ` getMethods() ` ] ( #method-getmethods )
25+ - ` -> ` [ ` getDeclaredMethods() ` ] ( #method-getdeclaredmethods )
26+ - ` -> ` [ ` getConstructors() ` ] ( #method-getconstructors )
27+ - ` -> ` [ ` getDeclaredConstructors() ` ] ( #method-getdeclaredconstructors )
28+ - ` -> ` [ ` getFields() ` ] ( #method-getfields )
29+ - ` -> ` [ ` getDeclaredFields() ` ] ( #method-getdeclaredfields )
2130
2231---
2332# Static Methods
@@ -59,6 +68,15 @@ getConstructor(java\reflection\ReflectionClass $types): java\reflection\Reflecti
5968
6069---
6170
71+ <a name =" method-getdeclaredconstructor " ></a >
72+
73+ ### getDeclaredConstructor()
74+ ``` php
75+ getDeclaredConstructor(java\reflection\ReflectionClass $types): java\reflection\ReflectionConstructor
76+ ```
77+
78+ ---
79+
6280<a name =" method-getmethod " ></a >
6381
6482### getMethod()
@@ -68,9 +86,81 @@ getMethod(string $method, java\reflection\ReflectionClass $types): java\reflecti
6886
6987---
7088
89+ <a name =" method-getdeclaredmethod " ></a >
90+
91+ ### getDeclaredMethod()
92+ ``` php
93+ getDeclaredMethod(string $method, java\reflection\ReflectionClass $types): java\reflection\ReflectionMethod
94+ ```
95+
96+ ---
97+
7198<a name =" method-getfield " ></a >
7299
73100### getField()
74101``` php
75102getField(string $name): java\reflection\ReflectionField
103+ ```
104+
105+ ---
106+
107+ <a name =" method-getdeclaredfield " ></a >
108+
109+ ### getDeclaredField()
110+ ``` php
111+ getDeclaredField(string $name): java\reflection\ReflectionField
112+ ```
113+
114+ ---
115+
116+ <a name =" method-getmethods " ></a >
117+
118+ ### getMethods()
119+ ``` php
120+ getMethods(): ReflectionMethod[]
121+ ```
122+
123+ ---
124+
125+ <a name =" method-getdeclaredmethods " ></a >
126+
127+ ### getDeclaredMethods()
128+ ``` php
129+ getDeclaredMethods(): ReflectionMethod[]
130+ ```
131+
132+ ---
133+
134+ <a name =" method-getconstructors " ></a >
135+
136+ ### getConstructors()
137+ ``` php
138+ getConstructors(): ReflectionConstructor[]
139+ ```
140+
141+ ---
142+
143+ <a name =" method-getdeclaredconstructors " ></a >
144+
145+ ### getDeclaredConstructors()
146+ ``` php
147+ getDeclaredConstructors(): ReflectionConstructor[]
148+ ```
149+
150+ ---
151+
152+ <a name =" method-getfields " ></a >
153+
154+ ### getFields()
155+ ``` php
156+ getFields(): ReflectionField[]
157+ ```
158+
159+ ---
160+
161+ <a name =" method-getdeclaredfields " ></a >
162+
163+ ### getDeclaredFields()
164+ ``` php
165+ getDeclaredFields(): ReflectionField[]
76166```
0 commit comments