-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathCollections.php
More file actions
806 lines (741 loc) Β· 27.1 KB
/
Collections.php
File metadata and controls
806 lines (741 loc) Β· 27.1 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
<?php
declare(strict_types=1);
namespace PHPJava\Packages\java\util;
use PHPJava\Exceptions\NotImplementedException;
use PHPJava\Packages\java\lang\Object_;
// use PHPJava\Packages\java\util\Deque;
// use PHPJava\Packages\java\lang\Comparable;
/**
* The `Collections` class was auto generated.
*
* @parent \PHPJava\Packages\java\lang\Object_
*/
class Collections extends Object_ // implements Deque, Comparable
{
/**
* The empty list (immutable).
*
* @var mixed $EMPTY_LIST
*/
public static $EMPTY_LIST = null;
/**
* The empty map (immutable).
*
* @var mixed $EMPTY_MAP
*/
public static $EMPTY_MAP = null;
/**
* The empty set (immutable).
*
* @var mixed $EMPTY_SET
*/
public static $EMPTY_SET = null;
/**
* Adds all of the specified elements to the specified collection.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#addAll
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_addAll($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a view of a Deque as a Last-in-first-out (Lifo) Queue.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#asLifoQueue
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_asLifoQueue($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Searches the specified list for the specified object using the binary search algorithm.
* Searches the specified list for the specified object using the binary search algorithm.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#binarySearch
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function static_binarySearch($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a dynamically typesafe view of the specified collection.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#checkedCollection
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_checkedCollection($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a dynamically typesafe view of the specified list.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#checkedList
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_checkedList($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a dynamically typesafe view of the specified map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#checkedMap
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @param null|mixed $d
* @throws NotImplementedException
*/
public static function static_checkedMap($a = null, $b = null, $c = null, $d = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a dynamically typesafe view of the specified navigable map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#checkedNavigableMap
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @param null|mixed $d
* @throws NotImplementedException
*/
public static function static_checkedNavigableMap($a = null, $b = null, $c = null, $d = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a dynamically typesafe view of the specified navigable set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#checkedNavigableSet
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_checkedNavigableSet($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a dynamically typesafe view of the specified queue.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#checkedQueue
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_checkedQueue($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a dynamically typesafe view of the specified set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#checkedSet
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_checkedSet($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a dynamically typesafe view of the specified sorted map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#checkedSortedMap
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @param null|mixed $d
* @throws NotImplementedException
*/
public static function static_checkedSortedMap($a = null, $b = null, $c = null, $d = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a dynamically typesafe view of the specified sorted set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#checkedSortedSet
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_checkedSortedSet($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Copies all of the elements from one list into another.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#copy
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_copy($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns true if the two specified collections have no elements in common.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#disjoint
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_disjoint($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an enumeration that has no elements.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptyEnumeration
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptyEnumeration($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an iterator that has no elements.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptyIterator
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptyIterator($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an empty list (immutable).
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptyList
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptyList($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a list iterator that has no elements.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptyListIterator
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptyListIterator($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an empty map (immutable).
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptyMap
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptyMap($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an empty navigable map (immutable).
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptyNavigableMap
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptyNavigableMap($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an empty navigable set (immutable).
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptyNavigableSet
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptyNavigableSet($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an empty set (immutable).
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptySet
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptySet($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an empty sorted map (immutable).
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptySortedMap
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptySortedMap($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an empty sorted set (immutable).
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#emptySortedSet
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_emptySortedSet($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an enumeration over the specified collection.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#enumeration
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_enumeration($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Replaces all of the elements of the specified list with the specified element.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#fill
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_fill($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the number of elements in the specified collection equal to the specified object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#frequency
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_frequency($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the starting position of the first occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#indexOfSubList
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_indexOfSubList($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the starting position of the last occurrence of the specified target list within the specified source list, or -1 if there is no such occurrence.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#lastIndexOfSubList
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_lastIndexOfSubList($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an array list containing the elements returned by the specified enumeration in the order they are returned by the enumeration.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#list
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_list($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the maximum element of the given collection, according to the natural ordering of its elements.
* Returns the maximum element of the given collection, according to the order induced by the specified comparator.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#max
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_max($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns the minimum element of the given collection, according to the natural ordering of its elements.
* Returns the minimum element of the given collection, according to the order induced by the specified comparator.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#min
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_min($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an immutable list consisting of n copies of the specified object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#nCopies
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_nCopies($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a set backed by the specified map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#newSetFromMap
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_newSetFromMap($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Replaces all occurrences of one specified value in a list with another.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#replaceAll
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function static_replaceAll($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Reverses the order of the elements in the specified list.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#reverse
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_reverse($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a comparator that imposes the reverse of the natural ordering on a collection of objects that implement the Comparable interface.
* Returns a comparator that imposes the reverse ordering of the specified comparator.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#reverseOrder
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_reverseOrder($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Rotates the elements in the specified list by the specified distance.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#rotate
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_rotate($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Randomly permutes the specified list using a default source of randomness.
* Randomly permute the specified list using the specified source of randomness.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#shuffle
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_shuffle($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an immutable set containing only the specified object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#singleton
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_singleton($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an immutable list containing only the specified object.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#singletonList
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_singletonList($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an immutable map, mapping only the specified key to the specified value.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#singletonMap
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_singletonMap($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Sorts the specified list into ascending order, according to the natural ordering of its elements.
* Sorts the specified list according to the order induced by the specified comparator.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#sort
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_sort($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Swaps the elements at the specified positions in the specified list.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#swap
* @param null|mixed $a
* @param null|mixed $b
* @param null|mixed $c
* @throws NotImplementedException
*/
public static function static_swap($a = null, $b = null, $c = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a synchronized (thread-safe) collection backed by the specified collection.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#synchronizedCollection
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_synchronizedCollection($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a synchronized (thread-safe) list backed by the specified list.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#synchronizedList
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_synchronizedList($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a synchronized (thread-safe) map backed by the specified map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#synchronizedMap
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_synchronizedMap($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a synchronized (thread-safe) navigable map backed by the specified navigable map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#synchronizedNavigableMap
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_synchronizedNavigableMap($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a synchronized (thread-safe) navigable set backed by the specified navigable set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#synchronizedNavigableSet
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_synchronizedNavigableSet($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a synchronized (thread-safe) set backed by the specified set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#synchronizedSet
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_synchronizedSet($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a synchronized (thread-safe) sorted map backed by the specified sorted map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#synchronizedSortedMap
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_synchronizedSortedMap($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns a synchronized (thread-safe) sorted set backed by the specified sorted set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#synchronizedSortedSet
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_synchronizedSortedSet($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an unmodifiable view of the specified collection.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#unmodifiableCollection
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_unmodifiableCollection($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an unmodifiable view of the specified list.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#unmodifiableList
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_unmodifiableList($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an unmodifiable view of the specified map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#unmodifiableMap
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_unmodifiableMap($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an unmodifiable view of the specified navigable map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#unmodifiableNavigableMap
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_unmodifiableNavigableMap($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an unmodifiable view of the specified navigable set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#unmodifiableNavigableSet
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_unmodifiableNavigableSet($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an unmodifiable view of the specified set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#unmodifiableSet
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_unmodifiableSet($a = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an unmodifiable view of the specified sorted map.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#unmodifiableSortedMap
* @param null|mixed $a
* @param null|mixed $b
* @throws NotImplementedException
*/
public static function static_unmodifiableSortedMap($a = null, $b = null)
{
throw new NotImplementedException(__METHOD__);
}
/**
* Returns an unmodifiable view of the specified sorted set.
*
* @see https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/package-summary.html#unmodifiableSortedSet
* @param null|mixed $a
* @throws NotImplementedException
*/
public static function static_unmodifiableSortedSet($a = null)
{
throw new NotImplementedException(__METHOD__);
}
}