-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathClass_.php
More file actions
840 lines (770 loc) Β· 29.8 KB
/
Class_.php
File metadata and controls
840 lines (770 loc) Β· 29.8 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
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\lang;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\io\InputStream;
// use PHPJava\Packages\java\io\Serializable;
// use PHPJava\Packages\java\lang\reflect\AnnotatedType;
// use PHPJava\Packages\java\lang\annotation\Annotation;
/**
* The `ClassInfo` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class Class_ extends Object_ // implements Serializable, AnnotatedType, Annotation
{
/**
* Casts this Class object to represent a subclass of the class represented by the specified class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#asSubclass
* @param null|mixed $a
* @throws NotImplementedException
*/
public function asSubclass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Casts an object to the class or interface represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#cast
* @param null|mixed $a
* @throws NotImplementedException
*/
public function cast($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the assertion status that would be assigned to this class if it were to be initialized at the time this method is invoked.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#desiredAssertionStatus
* @param null|mixed $a
* @throws NotImplementedException
*/
public function desiredAssertionStatus($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the Class with the given binary name in the given module.
* Returns the Class object associated with the class or interface with the given string name.
* Returns the Class object associated with the class or interface with the given string name, using the given class loader.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#forName
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function forName($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array of AnnotatedType objects that represent the use of types to specify superinterfaces of the entity represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getAnnotatedInterfaces
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getAnnotatedInterfaces($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an AnnotatedType object that represents the use of a type to specify the superclass of the entity represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getAnnotatedSuperclass
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getAnnotatedSuperclass($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 annotations that are associated with this element.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getAnnotationsByType
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getAnnotationsByType($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the canonical name of the underlying class as defined by the Java Language Specification.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getCanonicalName
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getCanonicalName($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array containing Class objects representing all the public classes and interfaces that are members of the class represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getClasses
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getClasses($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the class loader for the class.
*
* @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 the Class representing the component type of an array.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getComponentType
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getComponentType($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a Constructor object that reflects the specified public constructor of the class represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getConstructor
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getConstructor($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array containing Constructor objects reflecting all the public constructors of the class represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getConstructors
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getConstructors($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns this element's annotation for the specified type if such an annotation is directly present, else null.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredAnnotation
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaredAnnotation($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 this element's annotation(s) for the specified type if such annotations are either directly present or indirectly present.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredAnnotationsByType
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaredAnnotationsByType($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array of Class objects reflecting all the classes and interfaces declared as members of the class represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredClasses
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaredClasses($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a Constructor object that reflects the specified constructor of the class or interface represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredConstructor
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaredConstructor($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array of Constructor objects reflecting all the constructors declared by the class represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredConstructors
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaredConstructors($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a Field object that reflects the specified declared field of the class or interface represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredField
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaredField($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array of Field objects reflecting all the fields declared by the class or interface represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredFields
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaredFields($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a Method object that reflects the specified declared method of the class or interface represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredMethod
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function getDeclaredMethod($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array containing Method objects reflecting all the declared methods of the class or interface represented by this Class object, including public, protected, default (package) access, and private methods, but excluding inherited methods.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaredMethods
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaredMethods($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* If the class or interface represented by this Class object is a member of another class, returns the Class object representing the class in which it was declared.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getDeclaringClass
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getDeclaringClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the immediately enclosing class of the underlying class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getEnclosingClass
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getEnclosingClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* If this Class object represents a local or anonymous class within a constructor, returns a Constructor object representing the immediately enclosing constructor of the underlying class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getEnclosingConstructor
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getEnclosingConstructor($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* If this Class object represents a local or anonymous class within a method, returns a Method object representing the immediately enclosing method of the underlying class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getEnclosingMethod
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getEnclosingMethod($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the elements of this enum class or null if this Class object does not represent an enum type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getEnumConstants
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getEnumConstants($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a Field object that reflects the specified public member field of the class or interface represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getField
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getField($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array containing Field objects reflecting all the accessible public fields of the class or interface represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getFields
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getFields($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the Types representing the interfaces directly implemented by the class or interface represented by this object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getGenericInterfaces
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getGenericInterfaces($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the Type representing the direct superclass of the entity (class, interface, primitive type or void) represented by this Class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getGenericSuperclass
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getGenericSuperclass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the interfaces directly implemented by the class or interface represented by this object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getInterfaces
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getInterfaces($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a Method object that reflects the specified public member method of the class or interface represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getMethod
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public function getMethod($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array containing Method objects reflecting all the public methods of the class or interface represented by this Class object, including those declared by the class or interface and those inherited from superclasses and superinterfaces.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getMethods
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getMethods($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the Java language modifiers for this class or interface, encoded in an integer.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getModifiers
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getModifiers($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the module that this class or interface is a member of.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getModule
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getModule($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the name of the entity (class, interface, array class, primitive type, or void) represented by this Class object, as a String.
*
* @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 nest host of the nest to which the class or interface represented by this Class object belongs.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getNestHost
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getNestHost($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array containing Class objects representing all the classes and interfaces that are members of the nest to which the class or interface represented by this Class object belongs.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getNestMembers
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getNestMembers($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Gets the package of this class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getPackage
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getPackage($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the fully qualified package name.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getPackageName
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getPackageName($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the ProtectionDomain of this class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getProtectionDomain
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getProtectionDomain($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Finds a resource with a given name.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getResource
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getResource($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Finds a resource with a given name.
*
* @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)
{
return new InputStream($a);
}
/**
* Gets the signers of this class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getSigners
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getSigners($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the simple name of the underlying class as given in the source code.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getSimpleName
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getSimpleName($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the Class representing the direct superclass of the entity (class, interface, primitive type or void) represented by this Class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getSuperclass
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getSuperclass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Return an informative string for the name of this type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getTypeName
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getTypeName($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array of TypeVariable objects that represent the type variables declared by the generic declaration represented by this GenericDeclaration object, in declaration order.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#getTypeParameters
* @param null|mixed $a
* @throws NotImplementedException
*/
public function getTypeParameters($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if this Class object represents an annotation type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isAnnotation
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isAnnotation($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if an annotation for the specified type is present on this element, else false.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isAnnotationPresent
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isAnnotationPresent($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if and only if the underlying class is an anonymous class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isAnonymousClass
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isAnonymousClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Determines if this Class object represents an array class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isArray
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isArray($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Determines if the class or interface represented by this Class object is either the same as, or is a superclass or superinterface of, the class or interface represented by the specified Class parameter.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isAssignableFrom
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isAssignableFrom($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if and only if this class was declared as an enum in the source code.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isEnum
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isEnum($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Determines if the specified Object is assignment-compatible with the object represented by this Class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isInstance
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isInstance($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Determines if the specified Class object represents an interface type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isInterface
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isInterface($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if and only if the underlying class is a local class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isLocalClass
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isLocalClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if and only if the underlying class is a member class.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isMemberClass
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isMemberClass($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Determines if the given Class is a nestmate of the class or interface represented by this Class object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isNestmateOf
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isNestmateOf($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Determines if the specified Class object represents a primitive type.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isPrimitive
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isPrimitive($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if this class is a synthetic class; returns false otherwise.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#isSynthetic
* @param null|mixed $a
* @throws NotImplementedException
*/
public function isSynthetic($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Deprecated.This method propagates any exception thrown by the nullary constructor, including a checked exception.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#newInstance
* @param null|mixed $a
* @throws NotImplementedException
*/
public function newInstance($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a string describing this Class, including information about modifiers and type parameters.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/lang/package-summary.html#toGenericString
* @param null|mixed $a
* @throws NotImplementedException
*/
public function toGenericString($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Converts the object to a string.
*
* @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__);
}
}