-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
868 lines (648 loc) · 20 KB
/
__init__.py
File metadata and controls
868 lines (648 loc) · 20 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
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
"""Provides classes that are fundamental to the design of the Java
programming language.
"""
from __future__ import print_function
__all__ = [
"Appendable",
"ArrayIndexOutOfBoundsException",
"AutoCloseable",
"CharSequence",
"Class",
"ClassCastException",
"Comparable",
"Enum",
"Exception",
"IllegalArgumentException",
"IllegalStateException",
"IndexOutOfBoundsException",
"Iterable",
"NullPointerException",
"Number",
"Object",
"Readable",
"Runnable",
"RuntimeException",
"StackTraceElement",
"String",
"StringBuffer",
"StringBuilder",
"Thread",
"Throwable",
"UnsupportedOperationException",
]
import __builtin__ as builtins
import array
import time
from typing import TYPE_CHECKING, Any, List, Optional, Union
from java.lang.reflect import Type
if TYPE_CHECKING:
from java.nio import CharBuffer
from java.util import Iterator, Spliterator
from java.util.function import Consumer
class Object(object):
"""Class Object is the root of the class hierarchy.
Every class has Object as a superclass. All objects, including
arrays, implement the methods of this class.
"""
def __init__(self):
# type: () -> None
super(Object, self).__init__()
def __cmp__(self, other):
# type: (Object) -> bool
return True
def equals(self, obj):
# type: (Object) -> bool
return True
def getClass(self):
# type: () -> Class
pass
def hashCode(self):
# type: () -> int
return hash(self)
def notify(self):
# type: () -> None
pass
def notifyAll(self):
# type: () -> None
pass
def toString(self):
# type: () -> Union[str, unicode]
return repr(self)
def wait(self, timeoutMillis=0, nanos=0):
# type: (long, int) -> None
pass
def __lt__(self, other):
# type: (Object) -> bool
return True
def __gt__(self, other):
# type: (Object) -> bool
return True
def __ge__(self, other):
# type: (Object) -> bool
return True
class Appendable(object):
def append(self, c_csq, start=0, end=-1):
# type: (Union[CharSequence, str], int, int) -> Appendable
raise NotImplementedError
class AutoCloseable(object):
def close(self):
# type: () -> None
raise NotImplementedError
class CharSequence(object):
def charAt(self, index):
# type: (int) -> str
raise NotImplementedError
def chars(self): # type: ignore[no-untyped-def]
pass
def codePoints(self): # type: ignore[no-untyped-def]
pass
@staticmethod
def compare(cs1, cs2):
# type: (CharSequence, CharSequence) -> int
pass
def length(self):
# type: () -> int
raise NotImplementedError
def subSequence(self, start, end):
# type: (int, int) -> CharSequence
raise NotImplementedError
def toString(self):
# type: () -> Union[str, unicode]
raise NotImplementedError
class Comparable(object):
def compareTo(self, o):
# type: (Any) -> int
raise NotImplementedError
class Iterable(object):
def forEach(self, action):
# type: (Consumer) -> None
pass
def iterator(self):
# type: () -> Iterator
pass
def spliterator(self):
# type: () -> Spliterator
pass
class Readable(object):
def read(self, cb):
# type: (CharBuffer) -> int
raise NotImplementedError
class Runnable(object):
def run(self):
# type: () -> None
raise NotImplementedError
class Class(Object, Type):
def asSubClass(self, clazz):
# type: (Class) -> Any
pass
def cast(self, obj):
# type: (Object) -> Any
pass
def getTypeName(self):
# type: () -> Union[str, unicode]
pass
class Enum(Object):
def compareTo(self, o):
# type: (Enum) -> int
pass
def getDeclaringClass(self):
# type: () -> Class
pass
def name(self):
# type: () -> Union[str, unicode]
pass
def ordinal(self):
# type: () -> int
pass
@staticmethod
def valueOf(enumType, name):
# type: (Class, Union[str, unicode]) -> Enum
pass
class Number(Object):
def byteValue(self):
# type: () -> int
pass
def doubleValue(self):
# type: () -> float
raise NotImplementedError
def floatValue(self):
# type: () -> float
raise NotImplementedError
def intValue(self):
# type: () -> int
raise NotImplementedError
def longValue(self):
# type: () -> long
raise NotImplementedError
def shortValue(self):
# type: () -> int
pass
class StackTraceElement(Object):
def __init__(self, *args):
# type: (*Any) -> None
super(StackTraceElement, self).__init__()
print(args)
def getClassLoaderName(self):
# type: () -> str
pass
def getClassName(self):
# type: () -> str
pass
def getFileName(self):
# type: () -> str
pass
def getLineNumber(self):
# type: () -> int
pass
def getMethodName(self):
# type: () -> str
pass
def getModuleName(self):
# type: () -> str
pass
def getModuleVersion(self):
# type: () -> str
pass
def isNativeMethod(self):
# type: () -> bool
return True
class String(unicode):
def __new__(cls, *args):
# type: (Any, *Any) -> Any
print(args)
return super(String, cls).__new__(cls, *args)
def __init__(self, *args):
# type: (*Any) -> None
super(String, self).__init__(*args)
def charAt(self, index):
# type: (int) -> unicode
pass
def chars(self): # type: ignore[no-untyped-def]
pass
def codePointAt(self, index):
# type: (int) -> int
pass
def codePointBefore(self, index):
# type: (int) -> int
pass
def codePointCount(self, beginIndex, endIndex):
# type: (int, int) -> int
pass
def codePoints(self): # type: ignore[no-untyped-def]
pass
@staticmethod
def compare(cs1, cs2):
# type: (CharSequence, CharSequence) -> int
pass
def compareTo(self, anotherString):
# type: (String) -> int
pass
def compareToIgnoreCase(self, arg):
# type: (String) -> int
pass
def concat(self, arg):
# type: (String) -> String
pass
def contains(self, arg):
# type: (String) -> bool
return True
def contentEquals(self, arg):
# type: (Union[CharSequence, StringBuffer]) -> bool
return True
@staticmethod
def copyValueOf(*args):
# type: (*Any) -> String
pass
def endsWith(self, suffix):
# type: (String) -> bool
return self.endswith(suffix)
def equals(self, anObject):
# type: (Object) -> bool
return True
def equalsIgnoreCase(self, anotherString):
# type: (String) -> bool
return True
def getBytes(self, *args):
# type: (*Any) -> Optional[object]
print(args)
return array.array("b", self)
def getChars(self, srcBegin, srcEnd, dst, dstBegin):
# type: (int, int, object, int) -> None
pass
def getClass(self):
# type: () -> Class
pass
def hashCode(self):
# type: () -> int
return hash(self)
def indexOf(self, arg, fromIndex=None):
# type: (Union[int, String], Optional[int]) -> int
pass
def intern(self):
# type: () -> String
pass
def isBlank(self):
# type: () -> bool
return True
def isEmpty(self):
# type: () -> bool
return True
def lastIndexOf(self, arg, fromIndex=None):
# type: (Union[int, String], Optional[int]) -> int
pass
def length(self):
# type: () -> int
return len(self)
def lines(self): # type: ignore[no-untyped-def]
pass
def matches(self, regex):
# type: (String) -> bool
return True
def notify(self):
# type: () -> None
pass
def notifyAll(self):
# type: () -> None
pass
def offsetByCodePoints(self, index, codePointOffset):
# type: (int, int) -> int
pass
def regionMatches(self, *args):
# type: (*Any) -> bool
return True
def repeat(self, count):
# type: (int) -> String
pass
def replaceAll(self, regex, replacement):
# type: (String, String) -> String
pass
def replaceFirst(self, regex, replacement):
# type: (String, String) -> String
pass
def startsWith(self, prefix, offset=0):
# type: (String, int) -> bool
return self.startswith(prefix, offset)
def stripLeading(self):
# type: () -> String
pass
def stripTrailing(self):
# type: () -> String
pass
def subSequence(self, start, end):
# type: (int, int) -> CharSequence
pass
def substring(self, beginIndex, endIndex=None):
# type: (int, Optional[int]) -> String
pass
def toCharArray(self):
# type: () -> object
return array.array("c", self)
def toLowerCase(self, locale=None):
# type: (Optional[Any]) -> String
print(locale)
return String(self.lower())
def toString(self):
# type: () -> unicode
return unicode(self)
def toUpperCase(self):
# type: () -> String
return String(self.upper())
@staticmethod
def valueOf(*args):
# type: (*Any) -> String
pass
def wait(self, timeoutMillis=0, nanos=0):
# type: (long, int) -> None
pass
class StringBuffer(Object, CharSequence):
def __init__(self, *args):
# type: (Any) -> None
super(StringBuffer, self).__init__()
print(args)
def append(self, *args):
# type: (Any) -> StringBuffer
pass
def appendCodePoint(self, codePoint):
# type: (int) -> StringBuffer
pass
def capacity(self):
# type: () -> int
pass
def charAt(self, index):
# type: (int) -> str
pass
def codePointAt(self, index):
# type: (int) -> int
pass
def codePointBefore(self, index):
# type: (int) -> int
pass
def codePointCount(self, beginIndex, endIndex):
# type: (int, int) -> int
pass
def compareTo(self, another):
# type: (StringBuffer) -> int
pass
def delete(self, start, end):
# type: (int, int) -> StringBuffer
pass
def deleteCharAt(self, index):
# type: (int) -> StringBuffer
pass
def ensureCapacity(self, minimumCapacity):
# type: (int) -> None
pass
def getChars(self, srcBegin, srcEnd, dst, dstBegin):
# type: (int, int, str, int) -> None
pass
def indexOf(self, string, fromIndex=0):
# type: (str, int) -> int
pass
def insert(self, *args):
# type: (Any) -> StringBuffer
pass
def lastIndexOf(self, string, fromIndex=0):
# type: (str, int) -> int
pass
def length(self):
# type: () -> int
pass
def offsetByCodePoints(self, index, codePointOffset):
# type: (int, int) -> int
pass
def replace(self, start, end, string):
# type: (int, int, str) -> StringBuffer
pass
def reverse(self):
# type: () -> StringBuffer
pass
def setCharAt(self, index, ch):
# type: (int, str) -> None
pass
def setLength(self, newLength):
# type: (int) -> None
pass
def subSequence(self, start, end):
# type: (int, int) -> CharSequence
pass
def substring(self, start, end=-1):
# type: (int, int) -> str
pass
def trimToSize(self):
# type: () -> None
pass
class StringBuilder(Object, CharSequence):
def __init__(self, *args):
# type: (Any) -> None
super(StringBuilder, self).__init__()
print(args)
def append(self, *args):
# type: (Any) -> StringBuilder
pass
def capacity(self):
# type: () -> int
pass
def charAt(self, index):
# type: (int) -> str
pass
def codePointAt(self, index):
# type: (int) -> int
pass
def codePointBefore(self, index):
# type: (int) -> int
pass
def codePointCount(self, beginIndex, endIndex):
# type: (int, int) -> int
pass
def compareTo(self, another):
# type: (StringBuilder) -> int
pass
def delete(self, start, end):
# type: (int, int) -> StringBuilder
pass
def deleteCharAt(self, index):
# type: (int) -> StringBuilder
pass
def ensureCapacity(self, minimumCapacity):
# type: (int) -> None
pass
def getChars(self, srcBegin, srcEnd, dst, dstBegin):
# type: (int, int, str, int) -> None
pass
def indexOf(self, str_, fromIndex=0):
# type: (Union[str, unicode], int) -> int
pass
def insert(self, *args):
# type: (Any) -> StringBuilder
pass
def lastIndexOf(self, str_, fromIndex=0):
# type: (Union[str, unicode], int) -> int
pass
def length(self):
# type: () -> int
pass
def offsetByCodePoints(self, index, codePointOffset):
# type: (int, int) -> int
pass
def replace(self, start, end, str_):
# type: (int, int, int) -> StringBuilder
pass
def reverse(self):
# type: () -> StringBuilder
pass
def setCharAt(self, index, ch):
# type: (int, str) -> None
pass
def setLength(self, newLength):
# type: (int) -> None
pass
def subSequence(self, start, end):
# type: (int, int) -> CharSequence
pass
def substring(self, start, end=-1):
# type: (int, int) -> Union[str, unicode]
pass
def trimToSize(self):
# type: () -> None
pass
class Throwable(Object, builtins.Exception):
"""The Throwable class is the superclass of all errors and
exceptions in the Java language.
"""
def __init__(self, message=None, cause=None):
# type: (Optional[str], Optional[Throwable]) -> None
super(Throwable, self).__init__()
self._cause = cause
self._message = message
builtins.Exception.__init__(self, message)
@property
def cause(self):
# type: () -> Throwable
return Throwable()
def addSuppressed(self, exception):
# type: (Throwable) -> None
pass
def fillInStackTrace(self):
# type: () -> Throwable
pass
def getCause(self):
# type: () -> Throwable
return self.cause
def getLocalizedMessage(self):
# type: () -> str
return self.message
def getMessage(self):
# type: () -> str
pass
def getStackTrace(self):
# type: () -> List[StackTraceElement]
pass
def getSuppressed(self):
# type: () -> List[Throwable]
pass
def initCause(self, cause=None):
# type: (Optional[Throwable]) -> None
pass
@property
def message(self):
# type: () -> str
return "message"
def printStackTrace(self, *args):
# type: (Any) -> None
pass
def setStackTrace(self, stackTrace):
# type: (List[StackTraceElement]) -> None
pass
def toString(self):
# type: () -> Union[str, unicode]
return "A short description of this throwable."
class Exception(Throwable):
"""The class Exception and its subclasses are a form of Throwable
that indicates conditions that a reasonable application might want
to catch.
The class Exception and any subclasses that are not also subclasses
of RuntimeException are checked exceptions. Checked exceptions need
to be declared in a method or constructor's throws clause if they
can be thrown by the execution of the method or constructor and
propagate outside the method or constructor boundary.
"""
def __init__(self, message=None, cause=None):
# type: (Optional[str], Optional[Throwable]) -> None
super(Exception, self).__init__(message, cause)
class RuntimeException(Exception):
"""RuntimeException is the superclass of those exceptions that can
be thrown during the normal operation of the Java Virtual Machine.
RuntimeException and its subclasses are unchecked exceptions.
Unchecked exceptions do not need to be declared in a method or
constructor's throws clause if they can be thrown by the execution
of the method or constructor and propagate outside the method or
constructor boundary.
"""
def __init__(self, message=None, cause=None):
# type: (Optional[str], Optional[Throwable]) -> None
super(RuntimeException, self).__init__(message, cause)
class ClassCastException(RuntimeException):
"""Thrown to indicate that the code has attempted to cast an object
to a subclass of which it is not an instance.
"""
def __init__(self, s=None):
# type: (Optional[str]) -> None
super(ClassCastException, self).__init__(s)
class IllegalArgumentException(RuntimeException):
"""Thrown to indicate that a method has been passed an illegal or
inappropriate argument.
"""
def __init__(self, message=None, cause=None):
# type: (Optional[str], Optional[Throwable]) -> None
super(IllegalArgumentException, self).__init__(message, cause)
class IllegalStateException(RuntimeException):
"""Signals that a method has been invoked at an illegal or
inappropriate time.
"""
def __init__(self, message=None, cause=None):
# type: (Optional[str], Optional[Throwable]) -> None
super(IllegalStateException, self).__init__(message, cause)
class IndexOutOfBoundsException(RuntimeException):
"""Thrown to indicate that an index of some sort (such as to an
array, to a string, or to a vector) is out of range.
"""
def __init__(self, arg=None):
# type: (Optional[Union[int, str, unicode]]) -> None
super(IndexOutOfBoundsException, self).__init__()
class ArrayIndexOutOfBoundsException(IndexOutOfBoundsException):
"""Thrown to indicate that an array has been accessed with an
illegal index.
The index is either negative or greater than or equal to the size of
the array.
"""
def __init__(self, arg=None):
# type: (Optional[Union[int, str, unicode]]) -> None
super(ArrayIndexOutOfBoundsException, self).__init__(arg)
class NullPointerException(RuntimeException):
"""Thrown when an application attempts to use null in a case where
an object is required.
"""
def __init__(self, message=None, cause=None):
# type: (Optional[str], Optional[Throwable]) -> None
super(NullPointerException, self).__init__(message, cause)
class UnsupportedOperationException(RuntimeException):
"""Thrown to indicate that the requested operation is not
supported.
"""
def __init__(self, message=None, cause=None):
# type: (Optional[str], Optional[Throwable]) -> None
super(UnsupportedOperationException, self).__init__(message, cause)
class Thread(Object):
"""A thread is a thread of execution in a program. The Java Virtual
Machine allows an application to have multiple threads of execution
running concurrently.
Every thread has a name for identification purposes. More than one
thread may have the same name. If a name is not specified when a
thread is created, a new name is generated for it.
Unless otherwise noted, passing a null argument to a constructor or
method in this class will cause a NullPointerException to be thrown.
"""
@staticmethod
def sleep(millis):
# type: (long) -> None
time.sleep(millis // 1000)