PySimultan 0.5.9.6__py3-none-any.whl → 0.6.0.1__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (134) hide show
  1. PySimultan2/CHANGELOG.md +9 -0
  2. PySimultan2/__about__.py +1 -1
  3. PySimultan2/data_model.py +12 -5
  4. PySimultan2/default_types.py +39 -8
  5. PySimultan2/files.py +1 -1
  6. PySimultan2/object_mapper.py +31 -3
  7. PySimultan2/resources/BruTile.dll +0 -0
  8. PySimultan2/resources/ComponentBuilder.dll +0 -0
  9. PySimultan2/resources/ComponentBuilder.xml +93 -15
  10. PySimultan2/resources/HelixToolkit.Core.Wpf.dll +0 -0
  11. PySimultan2/resources/HelixToolkit.SharpDX.Core.Wpf.dll +0 -0
  12. PySimultan2/resources/HelixToolkit.SharpDX.Core.dll +0 -0
  13. PySimultan2/resources/HelixToolkit.dll +0 -0
  14. PySimultan2/resources/Python.Runtime.dll +0 -0
  15. PySimultan2/resources/SIMULTAN.Lang.dll +0 -0
  16. PySimultan2/resources/SIMULTAN.Lang.xml +62 -1
  17. PySimultan2/resources/SIMULTAN.UI.dll +0 -0
  18. PySimultan2/resources/SIMULTAN.UI.xml +57 -0
  19. PySimultan2/resources/SIMULTAN.dll +0 -0
  20. PySimultan2/resources/SIMULTAN.xml +73 -3
  21. PySimultan2/resources/System.Reflection.MetadataLoadContext.dll +0 -0
  22. PySimultan2/resources/defaultsettings.xml +0 -0
  23. PySimultan2/simultan_object.py +6 -1
  24. PySimultan2/taxonomy_maps.py +45 -27
  25. PySimultan2/typings/SIMULTAN/Data/Assets/__init__.pyi +616 -0
  26. PySimultan2/typings/SIMULTAN/Data/Components/__init__.pyi +2538 -0
  27. PySimultan2/typings/SIMULTAN/Data/FlowNetworks/__init__.pyi +499 -0
  28. PySimultan2/typings/SIMULTAN/Data/Geometry/__init__.pyi +2219 -0
  29. PySimultan2/typings/SIMULTAN/Data/MultiValues/__init__.pyi +682 -0
  30. PySimultan2/typings/SIMULTAN/Data/SimMath/__init__.pyi +1654 -0
  31. PySimultan2/typings/SIMULTAN/Data/SimNetworks/__init__.pyi +442 -0
  32. PySimultan2/typings/SIMULTAN/Data/SitePlanner/__init__.pyi +193 -0
  33. PySimultan2/typings/SIMULTAN/Data/Taxonomy/__init__.pyi +367 -0
  34. PySimultan2/typings/SIMULTAN/Data/Users/__init__.pyi +116 -0
  35. PySimultan2/typings/SIMULTAN/Data/ValueMappings/__init__.pyi +212 -0
  36. PySimultan2/typings/SIMULTAN/Data/__init__.pyi +232 -0
  37. PySimultan2/typings/SIMULTAN/DataMapping/__init__.pyi +916 -0
  38. PySimultan2/typings/SIMULTAN/Excel/__init__.pyi +15 -0
  39. PySimultan2/typings/SIMULTAN/Exceptions/__init__.pyi +268 -0
  40. PySimultan2/typings/SIMULTAN/Exchange/SimNetworkConnectors/__init__.pyi +32 -0
  41. PySimultan2/typings/SIMULTAN/Exchange/__init__.pyi +116 -0
  42. PySimultan2/typings/SIMULTAN/Projects/ManagedFiles/__init__.pyi +433 -0
  43. PySimultan2/typings/SIMULTAN/Projects/__init__.pyi +435 -0
  44. PySimultan2/typings/SIMULTAN/Serializer/CODXF/__init__.pyi +103 -0
  45. PySimultan2/typings/SIMULTAN/Serializer/CSV/__init__.pyi +122 -0
  46. PySimultan2/typings/SIMULTAN/Serializer/DXF/__init__.pyi +1335 -0
  47. PySimultan2/typings/SIMULTAN/Serializer/Geometry/__init__.pyi +48 -0
  48. PySimultan2/typings/SIMULTAN/Serializer/JSON/__init__.pyi +562 -0
  49. PySimultan2/typings/SIMULTAN/Serializer/METADXF/__init__.pyi +11 -0
  50. PySimultan2/typings/SIMULTAN/Serializer/PADXF/__init__.pyi +21 -0
  51. PySimultan2/typings/SIMULTAN/Serializer/PPATH/__init__.pyi +11 -0
  52. PySimultan2/typings/SIMULTAN/Serializer/Projects/__init__.pyi +112 -0
  53. PySimultan2/typings/SIMULTAN/Serializer/SIMLINKS/__init__.pyi +5 -0
  54. PySimultan2/typings/SIMULTAN/Serializer/SPDXF/__init__.pyi +13 -0
  55. PySimultan2/typings/SIMULTAN/Serializer/SimGeo/__init__.pyi +54 -0
  56. PySimultan2/typings/SIMULTAN/Serializer/TXDXF/__init__.pyi +46 -0
  57. PySimultan2/typings/SIMULTAN/Serializer/XMI/__init__.pyi +22 -0
  58. PySimultan2/typings/SIMULTAN/Serializer/__init__.pyi +32 -0
  59. PySimultan2/typings/SIMULTAN/Utils/BackgroundWork/__init__.pyi +43 -0
  60. PySimultan2/typings/SIMULTAN/Utils/Collections/__init__.pyi +216 -0
  61. PySimultan2/typings/SIMULTAN/Utils/ElevationProvider/__init__.pyi +66 -0
  62. PySimultan2/typings/SIMULTAN/Utils/Files/__init__.pyi +48 -0
  63. PySimultan2/typings/SIMULTAN/Utils/Randomize/__init__.pyi +11 -0
  64. PySimultan2/typings/SIMULTAN/Utils/Streams/__init__.pyi +59 -0
  65. PySimultan2/typings/SIMULTAN/Utils/UndoRedo/__init__.pyi +133 -0
  66. PySimultan2/typings/SIMULTAN/Utils/__init__.pyi +570 -0
  67. PySimultan2/typings/System/Buffers/Binary/__init__.pyi +248 -0
  68. PySimultan2/typings/System/Buffers/Text/__init__.pyi +91 -0
  69. PySimultan2/typings/System/Buffers/__init__.pyi +192 -0
  70. PySimultan2/typings/System/CodeDom/Compiler/__init__.pyi +137 -0
  71. PySimultan2/typings/System/Collections/Concurrent/__init__.pyi +47 -0
  72. PySimultan2/typings/System/Collections/Generic/__init__.pyi +1293 -0
  73. PySimultan2/typings/System/Collections/ObjectModel/__init__.pyi +166 -0
  74. PySimultan2/typings/System/Collections/Specialized/__init__.pyi +82 -0
  75. PySimultan2/typings/System/Collections/__init__.pyi +403 -0
  76. PySimultan2/typings/System/ComponentModel/__init__.pyi +582 -0
  77. PySimultan2/typings/System/Configuration/Assemblies/__init__.pyi +30 -0
  78. PySimultan2/typings/System/Diagnostics/CodeAnalysis/__init__.pyi +315 -0
  79. PySimultan2/typings/System/Diagnostics/Contracts/__init__.pyi +297 -0
  80. PySimultan2/typings/System/Diagnostics/SymbolStore/__init__.pyi +9 -0
  81. PySimultan2/typings/System/Diagnostics/Tracing/__init__.pyi +641 -0
  82. PySimultan2/typings/System/Diagnostics/__init__.pyi +1101 -0
  83. PySimultan2/typings/System/Globalization/__init__.pyi +1675 -0
  84. PySimultan2/typings/System/IO/Enumeration/__init__.pyi +125 -0
  85. PySimultan2/typings/System/IO/__init__.pyi +2747 -0
  86. PySimultan2/typings/System/Linq/Expressions/__init__.pyi +1815 -0
  87. PySimultan2/typings/System/Net/__init__.pyi +81 -0
  88. PySimultan2/typings/System/Numerics/__init__.pyi +2853 -0
  89. PySimultan2/typings/System/Reflection/Emit/__init__.pyi +1945 -0
  90. PySimultan2/typings/System/Reflection/Metadata/__init__.pyi +24 -0
  91. PySimultan2/typings/System/Reflection/__init__.pyi +2724 -0
  92. PySimultan2/typings/System/Resources/__init__.pyi +205 -0
  93. PySimultan2/typings/System/Runtime/CompilerServices/__init__.pyi +1926 -0
  94. PySimultan2/typings/System/Runtime/ConstrainedExecution/__init__.pyi +49 -0
  95. PySimultan2/typings/System/Runtime/ExceptionServices/__init__.pyi +34 -0
  96. PySimultan2/typings/System/Runtime/InteropServices/ComTypes/__init__.pyi +758 -0
  97. PySimultan2/typings/System/Runtime/InteropServices/Marshalling/__init__.pyi +461 -0
  98. PySimultan2/typings/System/Runtime/InteropServices/ObjectiveC/__init__.pyi +48 -0
  99. PySimultan2/typings/System/Runtime/InteropServices/__init__.pyi +2632 -0
  100. PySimultan2/typings/System/Runtime/Intrinsics/Arm/__init__.pyi +4757 -0
  101. PySimultan2/typings/System/Runtime/Intrinsics/Wasm/__init__.pyi +844 -0
  102. PySimultan2/typings/System/Runtime/Intrinsics/X86/__init__.pyi +5642 -0
  103. PySimultan2/typings/System/Runtime/Intrinsics/__init__.pyi +4504 -0
  104. PySimultan2/typings/System/Runtime/Loader/__init__.pyi +63 -0
  105. PySimultan2/typings/System/Runtime/Remoting/__init__.pyi +7 -0
  106. PySimultan2/typings/System/Runtime/Serialization/__init__.pyi +269 -0
  107. PySimultan2/typings/System/Runtime/Versioning/__init__.pyi +200 -0
  108. PySimultan2/typings/System/Runtime/__init__.pyi +141 -0
  109. PySimultan2/typings/System/Security/Cryptography/__init__.pyi +39 -0
  110. PySimultan2/typings/System/Security/Permissions/__init__.pyi +163 -0
  111. PySimultan2/typings/System/Security/Principal/__init__.pyi +45 -0
  112. PySimultan2/typings/System/Security/__init__.pyi +347 -0
  113. PySimultan2/typings/System/Text/Unicode/__init__.pyi +62 -0
  114. PySimultan2/typings/System/Text/__init__.pyi +1590 -0
  115. PySimultan2/typings/System/Threading/Tasks/Sources/__init__.pyi +76 -0
  116. PySimultan2/typings/System/Threading/Tasks/__init__.pyi +1403 -0
  117. PySimultan2/typings/System/Threading/__init__.pyi +1788 -0
  118. PySimultan2/typings/System/Xml/Schema/__init__.pyi +1255 -0
  119. PySimultan2/typings/System/Xml/Serialization/__init__.pyi +16 -0
  120. PySimultan2/typings/System/Xml/XPath/__init__.pyi +474 -0
  121. PySimultan2/typings/System/Xml/__init__.pyi +2410 -0
  122. PySimultan2/typings/System/__init__.pyi +17821 -0
  123. PySimultan2/utils.py +10 -5
  124. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/METADATA +5 -1
  125. pysimultan-0.6.0.1.dist-info/RECORD +174 -0
  126. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll +0 -0
  127. PySimultan2/resources/SIMULTAN.AutoUpdate.Client.dll.config +0 -11
  128. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll +0 -0
  129. PySimultan2/resources/SIMULTAN.AutoUpdate.DataTransferLibrary.dll.config +0 -15
  130. PySimultan2/resources/SIMULTAN.Plugins.dll +0 -0
  131. PySimultan2/resources/SIMULTAN.Plugins.xml +0 -396
  132. pysimultan-0.5.9.6.dist-info/RECORD +0 -81
  133. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/WHEEL +0 -0
  134. {pysimultan-0.5.9.6.dist-info → pysimultan-0.6.0.1.dist-info}/licenses/LICENSE.txt +0 -0
@@ -0,0 +1,1675 @@
1
+ import typing, clr, abc
2
+ from System import ICloneable, Array_1, DateTime, DayOfWeek, ReadOnlySpan_1, Span_1, IFormatProvider, ArgumentException, Exception, TimeSpan, StringComparer, IEquatable_1, Guid
3
+ from System.Runtime.Serialization import IDeserializationCallback, SerializationInfo, StreamingContext
4
+ from System.Reflection import Assembly, MethodBase
5
+ from System.Text import Rune
6
+ from System.Collections import IDictionary, IEnumerator
7
+
8
+ class Calendar(ICloneable, abc.ABC):
9
+ CurrentEra : int
10
+ @property
11
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
12
+ @property
13
+ def Eras(self) -> Array_1[int]: ...
14
+ @property
15
+ def IsReadOnly(self) -> bool: ...
16
+ @property
17
+ def MaxSupportedDateTime(self) -> DateTime: ...
18
+ @property
19
+ def MinSupportedDateTime(self) -> DateTime: ...
20
+ @property
21
+ def TwoDigitYearMax(self) -> int: ...
22
+ @TwoDigitYearMax.setter
23
+ def TwoDigitYearMax(self, value: int) -> int: ...
24
+ def AddDays(self, time: DateTime, days: int) -> DateTime: ...
25
+ def AddHours(self, time: DateTime, hours: int) -> DateTime: ...
26
+ def AddMilliseconds(self, time: DateTime, milliseconds: float) -> DateTime: ...
27
+ def AddMinutes(self, time: DateTime, minutes: int) -> DateTime: ...
28
+ @abc.abstractmethod
29
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
30
+ def AddSeconds(self, time: DateTime, seconds: int) -> DateTime: ...
31
+ def AddWeeks(self, time: DateTime, weeks: int) -> DateTime: ...
32
+ @abc.abstractmethod
33
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
34
+ def Clone(self) -> typing.Any: ...
35
+ @abc.abstractmethod
36
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
37
+ @abc.abstractmethod
38
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
39
+ @abc.abstractmethod
40
+ def GetDayOfYear(self, time: DateTime) -> int: ...
41
+ @abc.abstractmethod
42
+ def GetEra(self, time: DateTime) -> int: ...
43
+ def GetHour(self, time: DateTime) -> int: ...
44
+ def GetMilliseconds(self, time: DateTime) -> float: ...
45
+ def GetMinute(self, time: DateTime) -> int: ...
46
+ @abc.abstractmethod
47
+ def GetMonth(self, time: DateTime) -> int: ...
48
+ def GetSecond(self, time: DateTime) -> int: ...
49
+ def GetWeekOfYear(self, time: DateTime, rule: CalendarWeekRule, firstDayOfWeek: DayOfWeek) -> int: ...
50
+ @abc.abstractmethod
51
+ def GetYear(self, time: DateTime) -> int: ...
52
+ @staticmethod
53
+ def ReadOnly(calendar: Calendar) -> Calendar: ...
54
+ def ToFourDigitYear(self, year: int) -> int: ...
55
+ # Skipped GetDaysInMonth due to it being static, abstract and generic.
56
+
57
+ GetDaysInMonth : GetDaysInMonth_MethodGroup
58
+ class GetDaysInMonth_MethodGroup:
59
+ @typing.overload
60
+ def __call__(self, year: int, month: int) -> int:...
61
+ @typing.overload
62
+ def __call__(self, year: int, month: int, era: int) -> int:...
63
+
64
+ # Skipped GetDaysInYear due to it being static, abstract and generic.
65
+
66
+ GetDaysInYear : GetDaysInYear_MethodGroup
67
+ class GetDaysInYear_MethodGroup:
68
+ @typing.overload
69
+ def __call__(self, year: int) -> int:...
70
+ @typing.overload
71
+ def __call__(self, year: int, era: int) -> int:...
72
+
73
+ # Skipped GetLeapMonth due to it being static, abstract and generic.
74
+
75
+ GetLeapMonth : GetLeapMonth_MethodGroup
76
+ class GetLeapMonth_MethodGroup:
77
+ @typing.overload
78
+ def __call__(self, year: int) -> int:...
79
+ @typing.overload
80
+ def __call__(self, year: int, era: int) -> int:...
81
+
82
+ # Skipped GetMonthsInYear due to it being static, abstract and generic.
83
+
84
+ GetMonthsInYear : GetMonthsInYear_MethodGroup
85
+ class GetMonthsInYear_MethodGroup:
86
+ @typing.overload
87
+ def __call__(self, year: int) -> int:...
88
+ @typing.overload
89
+ def __call__(self, year: int, era: int) -> int:...
90
+
91
+ # Skipped IsLeapDay due to it being static, abstract and generic.
92
+
93
+ IsLeapDay : IsLeapDay_MethodGroup
94
+ class IsLeapDay_MethodGroup:
95
+ @typing.overload
96
+ def __call__(self, year: int, month: int, day: int) -> bool:...
97
+ @typing.overload
98
+ def __call__(self, year: int, month: int, day: int, era: int) -> bool:...
99
+
100
+ # Skipped IsLeapMonth due to it being static, abstract and generic.
101
+
102
+ IsLeapMonth : IsLeapMonth_MethodGroup
103
+ class IsLeapMonth_MethodGroup:
104
+ @typing.overload
105
+ def __call__(self, year: int, month: int) -> bool:...
106
+ @typing.overload
107
+ def __call__(self, year: int, month: int, era: int) -> bool:...
108
+
109
+ # Skipped IsLeapYear due to it being static, abstract and generic.
110
+
111
+ IsLeapYear : IsLeapYear_MethodGroup
112
+ class IsLeapYear_MethodGroup:
113
+ @typing.overload
114
+ def __call__(self, year: int) -> bool:...
115
+ @typing.overload
116
+ def __call__(self, year: int, era: int) -> bool:...
117
+
118
+ # Skipped ToDateTime due to it being static, abstract and generic.
119
+
120
+ ToDateTime : ToDateTime_MethodGroup
121
+ class ToDateTime_MethodGroup:
122
+ @typing.overload
123
+ def __call__(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int) -> DateTime:...
124
+ @typing.overload
125
+ def __call__(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime:...
126
+
127
+
128
+
129
+ class CalendarAlgorithmType(typing.SupportsInt):
130
+ @typing.overload
131
+ def __init__(self, value : int) -> None: ...
132
+ @typing.overload
133
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
134
+ def __int__(self) -> int: ...
135
+
136
+ # Values:
137
+ Unknown : CalendarAlgorithmType # 0
138
+ SolarCalendar : CalendarAlgorithmType # 1
139
+ LunarCalendar : CalendarAlgorithmType # 2
140
+ LunisolarCalendar : CalendarAlgorithmType # 3
141
+
142
+
143
+ class CalendarWeekRule(typing.SupportsInt):
144
+ @typing.overload
145
+ def __init__(self, value : int) -> None: ...
146
+ @typing.overload
147
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
148
+ def __int__(self) -> int: ...
149
+
150
+ # Values:
151
+ FirstDay : CalendarWeekRule # 0
152
+ FirstFullWeek : CalendarWeekRule # 1
153
+ FirstFourDayWeek : CalendarWeekRule # 2
154
+
155
+
156
+ class CharUnicodeInfo(abc.ABC):
157
+ # Skipped GetDecimalDigitValue due to it being static, abstract and generic.
158
+
159
+ GetDecimalDigitValue : GetDecimalDigitValue_MethodGroup
160
+ class GetDecimalDigitValue_MethodGroup:
161
+ @typing.overload
162
+ def __call__(self, ch: str) -> int:...
163
+ @typing.overload
164
+ def __call__(self, s: str, index: int) -> int:...
165
+
166
+ # Skipped GetDigitValue due to it being static, abstract and generic.
167
+
168
+ GetDigitValue : GetDigitValue_MethodGroup
169
+ class GetDigitValue_MethodGroup:
170
+ @typing.overload
171
+ def __call__(self, ch: str) -> int:...
172
+ @typing.overload
173
+ def __call__(self, s: str, index: int) -> int:...
174
+
175
+ # Skipped GetNumericValue due to it being static, abstract and generic.
176
+
177
+ GetNumericValue : GetNumericValue_MethodGroup
178
+ class GetNumericValue_MethodGroup:
179
+ @typing.overload
180
+ def __call__(self, ch: str) -> float:...
181
+ @typing.overload
182
+ def __call__(self, s: str, index: int) -> float:...
183
+
184
+ # Skipped GetUnicodeCategory due to it being static, abstract and generic.
185
+
186
+ GetUnicodeCategory : GetUnicodeCategory_MethodGroup
187
+ class GetUnicodeCategory_MethodGroup:
188
+ @typing.overload
189
+ def __call__(self, ch: str) -> UnicodeCategory:...
190
+ @typing.overload
191
+ def __call__(self, codePoint: int) -> UnicodeCategory:...
192
+ @typing.overload
193
+ def __call__(self, s: str, index: int) -> UnicodeCategory:...
194
+
195
+
196
+
197
+ class ChineseLunisolarCalendar(EastAsianLunisolarCalendar):
198
+ def __init__(self) -> None: ...
199
+ ChineseEra : int
200
+ @property
201
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
202
+ @property
203
+ def Eras(self) -> Array_1[int]: ...
204
+ @property
205
+ def IsReadOnly(self) -> bool: ...
206
+ @property
207
+ def MaxSupportedDateTime(self) -> DateTime: ...
208
+ @property
209
+ def MinSupportedDateTime(self) -> DateTime: ...
210
+ @property
211
+ def TwoDigitYearMax(self) -> int: ...
212
+ @TwoDigitYearMax.setter
213
+ def TwoDigitYearMax(self, value: int) -> int: ...
214
+ def GetEra(self, time: DateTime) -> int: ...
215
+
216
+
217
+ class CompareInfo(IDeserializationCallback):
218
+ @property
219
+ def LCID(self) -> int: ...
220
+ @property
221
+ def Name(self) -> str: ...
222
+ @property
223
+ def Version(self) -> SortVersion: ...
224
+ def Equals(self, value: typing.Any) -> bool: ...
225
+ def GetSortKeyLength(self, source: ReadOnlySpan_1[str], options: CompareOptions = ...) -> int: ...
226
+ def ToString(self) -> str: ...
227
+ # Skipped Compare due to it being static, abstract and generic.
228
+
229
+ Compare : Compare_MethodGroup
230
+ class Compare_MethodGroup:
231
+ @typing.overload
232
+ def __call__(self, string1: str, string2: str) -> int:...
233
+ @typing.overload
234
+ def __call__(self, string1: ReadOnlySpan_1[str], string2: ReadOnlySpan_1[str], options: CompareOptions = ...) -> int:...
235
+ @typing.overload
236
+ def __call__(self, string1: str, string2: str, options: CompareOptions) -> int:...
237
+ @typing.overload
238
+ def __call__(self, string1: str, offset1: int, string2: str, offset2: int) -> int:...
239
+ @typing.overload
240
+ def __call__(self, string1: str, offset1: int, string2: str, offset2: int, options: CompareOptions) -> int:...
241
+ @typing.overload
242
+ def __call__(self, string1: str, offset1: int, length1: int, string2: str, offset2: int, length2: int) -> int:...
243
+ @typing.overload
244
+ def __call__(self, string1: str, offset1: int, length1: int, string2: str, offset2: int, length2: int, options: CompareOptions) -> int:...
245
+
246
+ # Skipped GetCompareInfo due to it being static, abstract and generic.
247
+
248
+ GetCompareInfo : GetCompareInfo_MethodGroup
249
+ class GetCompareInfo_MethodGroup:
250
+ @typing.overload
251
+ def __call__(self, culture: int) -> CompareInfo:...
252
+ @typing.overload
253
+ def __call__(self, name: str) -> CompareInfo:...
254
+ @typing.overload
255
+ def __call__(self, culture: int, assembly: Assembly) -> CompareInfo:...
256
+ @typing.overload
257
+ def __call__(self, name: str, assembly: Assembly) -> CompareInfo:...
258
+
259
+ # Skipped GetHashCode due to it being static, abstract and generic.
260
+
261
+ GetHashCode : GetHashCode_MethodGroup
262
+ class GetHashCode_MethodGroup:
263
+ @typing.overload
264
+ def __call__(self) -> int:...
265
+ @typing.overload
266
+ def __call__(self, source: ReadOnlySpan_1[str], options: CompareOptions) -> int:...
267
+ @typing.overload
268
+ def __call__(self, source: str, options: CompareOptions) -> int:...
269
+
270
+ # Skipped GetSortKey due to it being static, abstract and generic.
271
+
272
+ GetSortKey : GetSortKey_MethodGroup
273
+ class GetSortKey_MethodGroup:
274
+ @typing.overload
275
+ def __call__(self, source: str) -> SortKey:...
276
+ @typing.overload
277
+ def __call__(self, source: str, options: CompareOptions) -> SortKey:...
278
+ @typing.overload
279
+ def __call__(self, source: ReadOnlySpan_1[str], destination: Span_1[int], options: CompareOptions = ...) -> int:...
280
+
281
+ # Skipped IndexOf due to it being static, abstract and generic.
282
+
283
+ IndexOf : IndexOf_MethodGroup
284
+ class IndexOf_MethodGroup:
285
+ @typing.overload
286
+ def __call__(self, source: str, value: str) -> int:...
287
+ # Method IndexOf(source : String, value : String) was skipped since it collides with above method
288
+ @typing.overload
289
+ def __call__(self, source: ReadOnlySpan_1[str], value: ReadOnlySpan_1[str], options: CompareOptions = ...) -> int:...
290
+ @typing.overload
291
+ def __call__(self, source: ReadOnlySpan_1[str], value: Rune, options: CompareOptions = ...) -> int:...
292
+ @typing.overload
293
+ def __call__(self, source: str, value: str, startIndex: int) -> int:...
294
+ # Method IndexOf(source : String, value : String, startIndex : Int32) was skipped since it collides with above method
295
+ @typing.overload
296
+ def __call__(self, source: str, value: str, options: CompareOptions) -> int:...
297
+ # Method IndexOf(source : String, value : String, options : CompareOptions) was skipped since it collides with above method
298
+ @typing.overload
299
+ def __call__(self, source: ReadOnlySpan_1[str], value: ReadOnlySpan_1[str], options: CompareOptions, matchLength: clr.Reference[int]) -> int:...
300
+ @typing.overload
301
+ def __call__(self, source: str, value: str, startIndex: int, count: int) -> int:...
302
+ # Method IndexOf(source : String, value : String, startIndex : Int32, count : Int32) was skipped since it collides with above method
303
+ @typing.overload
304
+ def __call__(self, source: str, value: str, startIndex: int, options: CompareOptions) -> int:...
305
+ # Method IndexOf(source : String, value : String, startIndex : Int32, options : CompareOptions) was skipped since it collides with above method
306
+ @typing.overload
307
+ def __call__(self, source: str, value: str, startIndex: int, count: int, options: CompareOptions) -> int:...
308
+ # Method IndexOf(source : String, value : String, startIndex : Int32, count : Int32, options : CompareOptions) was skipped since it collides with above method
309
+
310
+ # Skipped IsPrefix due to it being static, abstract and generic.
311
+
312
+ IsPrefix : IsPrefix_MethodGroup
313
+ class IsPrefix_MethodGroup:
314
+ @typing.overload
315
+ def __call__(self, source: str, prefix: str) -> bool:...
316
+ @typing.overload
317
+ def __call__(self, source: ReadOnlySpan_1[str], prefix: ReadOnlySpan_1[str], options: CompareOptions = ...) -> bool:...
318
+ @typing.overload
319
+ def __call__(self, source: str, prefix: str, options: CompareOptions) -> bool:...
320
+ @typing.overload
321
+ def __call__(self, source: ReadOnlySpan_1[str], prefix: ReadOnlySpan_1[str], options: CompareOptions, matchLength: clr.Reference[int]) -> bool:...
322
+
323
+ # Skipped IsSortable due to it being static, abstract and generic.
324
+
325
+ IsSortable : IsSortable_MethodGroup
326
+ class IsSortable_MethodGroup:
327
+ @typing.overload
328
+ def __call__(self, ch: str) -> bool:...
329
+ @typing.overload
330
+ def __call__(self, text: ReadOnlySpan_1[str]) -> bool:...
331
+ # Method IsSortable(text : String) was skipped since it collides with above method
332
+ @typing.overload
333
+ def __call__(self, value: Rune) -> bool:...
334
+
335
+ # Skipped IsSuffix due to it being static, abstract and generic.
336
+
337
+ IsSuffix : IsSuffix_MethodGroup
338
+ class IsSuffix_MethodGroup:
339
+ @typing.overload
340
+ def __call__(self, source: str, suffix: str) -> bool:...
341
+ @typing.overload
342
+ def __call__(self, source: ReadOnlySpan_1[str], suffix: ReadOnlySpan_1[str], options: CompareOptions = ...) -> bool:...
343
+ @typing.overload
344
+ def __call__(self, source: str, suffix: str, options: CompareOptions) -> bool:...
345
+ @typing.overload
346
+ def __call__(self, source: ReadOnlySpan_1[str], suffix: ReadOnlySpan_1[str], options: CompareOptions, matchLength: clr.Reference[int]) -> bool:...
347
+
348
+ # Skipped LastIndexOf due to it being static, abstract and generic.
349
+
350
+ LastIndexOf : LastIndexOf_MethodGroup
351
+ class LastIndexOf_MethodGroup:
352
+ @typing.overload
353
+ def __call__(self, source: str, value: str) -> int:...
354
+ # Method LastIndexOf(source : String, value : String) was skipped since it collides with above method
355
+ @typing.overload
356
+ def __call__(self, source: ReadOnlySpan_1[str], value: ReadOnlySpan_1[str], options: CompareOptions = ...) -> int:...
357
+ @typing.overload
358
+ def __call__(self, source: ReadOnlySpan_1[str], value: Rune, options: CompareOptions = ...) -> int:...
359
+ @typing.overload
360
+ def __call__(self, source: str, value: str, startIndex: int) -> int:...
361
+ # Method LastIndexOf(source : String, value : String, startIndex : Int32) was skipped since it collides with above method
362
+ @typing.overload
363
+ def __call__(self, source: str, value: str, options: CompareOptions) -> int:...
364
+ # Method LastIndexOf(source : String, value : String, options : CompareOptions) was skipped since it collides with above method
365
+ @typing.overload
366
+ def __call__(self, source: ReadOnlySpan_1[str], value: ReadOnlySpan_1[str], options: CompareOptions, matchLength: clr.Reference[int]) -> int:...
367
+ @typing.overload
368
+ def __call__(self, source: str, value: str, startIndex: int, count: int) -> int:...
369
+ # Method LastIndexOf(source : String, value : String, startIndex : Int32, count : Int32) was skipped since it collides with above method
370
+ @typing.overload
371
+ def __call__(self, source: str, value: str, startIndex: int, options: CompareOptions) -> int:...
372
+ # Method LastIndexOf(source : String, value : String, startIndex : Int32, options : CompareOptions) was skipped since it collides with above method
373
+ @typing.overload
374
+ def __call__(self, source: str, value: str, startIndex: int, count: int, options: CompareOptions) -> int:...
375
+ # Method LastIndexOf(source : String, value : String, startIndex : Int32, count : Int32, options : CompareOptions) was skipped since it collides with above method
376
+
377
+
378
+
379
+ class CompareOptions(typing.SupportsInt):
380
+ @typing.overload
381
+ def __init__(self, value : int) -> None: ...
382
+ @typing.overload
383
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
384
+ def __int__(self) -> int: ...
385
+
386
+ # Values:
387
+ None_ : CompareOptions # 0
388
+ IgnoreCase : CompareOptions # 1
389
+ IgnoreNonSpace : CompareOptions # 2
390
+ IgnoreSymbols : CompareOptions # 4
391
+ IgnoreKanaType : CompareOptions # 8
392
+ IgnoreWidth : CompareOptions # 16
393
+ OrdinalIgnoreCase : CompareOptions # 268435456
394
+ StringSort : CompareOptions # 536870912
395
+ Ordinal : CompareOptions # 1073741824
396
+
397
+
398
+ class CultureInfo(ICloneable, IFormatProvider):
399
+ @typing.overload
400
+ def __init__(self, culture: int) -> None: ...
401
+ @typing.overload
402
+ def __init__(self, culture: int, useUserOverride: bool) -> None: ...
403
+ @typing.overload
404
+ def __init__(self, name: str) -> None: ...
405
+ @typing.overload
406
+ def __init__(self, name: str, useUserOverride: bool) -> None: ...
407
+ @property
408
+ def Calendar(self) -> Calendar: ...
409
+ @property
410
+ def CompareInfo(self) -> CompareInfo: ...
411
+ @property
412
+ def CultureTypes(self) -> CultureTypes: ...
413
+ @classmethod
414
+ @property
415
+ def CurrentCulture(cls) -> CultureInfo: ...
416
+ @classmethod
417
+ @CurrentCulture.setter
418
+ def CurrentCulture(cls, value: CultureInfo) -> CultureInfo: ...
419
+ @classmethod
420
+ @property
421
+ def CurrentUICulture(cls) -> CultureInfo: ...
422
+ @classmethod
423
+ @CurrentUICulture.setter
424
+ def CurrentUICulture(cls, value: CultureInfo) -> CultureInfo: ...
425
+ @property
426
+ def DateTimeFormat(self) -> DateTimeFormatInfo: ...
427
+ @DateTimeFormat.setter
428
+ def DateTimeFormat(self, value: DateTimeFormatInfo) -> DateTimeFormatInfo: ...
429
+ @classmethod
430
+ @property
431
+ def DefaultThreadCurrentCulture(cls) -> CultureInfo: ...
432
+ @classmethod
433
+ @DefaultThreadCurrentCulture.setter
434
+ def DefaultThreadCurrentCulture(cls, value: CultureInfo) -> CultureInfo: ...
435
+ @classmethod
436
+ @property
437
+ def DefaultThreadCurrentUICulture(cls) -> CultureInfo: ...
438
+ @classmethod
439
+ @DefaultThreadCurrentUICulture.setter
440
+ def DefaultThreadCurrentUICulture(cls, value: CultureInfo) -> CultureInfo: ...
441
+ @property
442
+ def DisplayName(self) -> str: ...
443
+ @property
444
+ def EnglishName(self) -> str: ...
445
+ @property
446
+ def IetfLanguageTag(self) -> str: ...
447
+ @classmethod
448
+ @property
449
+ def InstalledUICulture(cls) -> CultureInfo: ...
450
+ @classmethod
451
+ @property
452
+ def InvariantCulture(cls) -> CultureInfo: ...
453
+ @property
454
+ def IsNeutralCulture(self) -> bool: ...
455
+ @property
456
+ def IsReadOnly(self) -> bool: ...
457
+ @property
458
+ def KeyboardLayoutId(self) -> int: ...
459
+ @property
460
+ def LCID(self) -> int: ...
461
+ @property
462
+ def Name(self) -> str: ...
463
+ @property
464
+ def NativeName(self) -> str: ...
465
+ @property
466
+ def NumberFormat(self) -> NumberFormatInfo: ...
467
+ @NumberFormat.setter
468
+ def NumberFormat(self, value: NumberFormatInfo) -> NumberFormatInfo: ...
469
+ @property
470
+ def OptionalCalendars(self) -> Array_1[Calendar]: ...
471
+ @property
472
+ def Parent(self) -> CultureInfo: ...
473
+ @property
474
+ def TextInfo(self) -> TextInfo: ...
475
+ @property
476
+ def ThreeLetterISOLanguageName(self) -> str: ...
477
+ @property
478
+ def ThreeLetterWindowsLanguageName(self) -> str: ...
479
+ @property
480
+ def TwoLetterISOLanguageName(self) -> str: ...
481
+ @property
482
+ def UseUserOverride(self) -> bool: ...
483
+ def ClearCachedData(self) -> None: ...
484
+ def Clone(self) -> typing.Any: ...
485
+ @staticmethod
486
+ def CreateSpecificCulture(name: str) -> CultureInfo: ...
487
+ def Equals(self, value: typing.Any) -> bool: ...
488
+ def GetConsoleFallbackUICulture(self) -> CultureInfo: ...
489
+ @staticmethod
490
+ def GetCultureInfoByIetfLanguageTag(name: str) -> CultureInfo: ...
491
+ @staticmethod
492
+ def GetCultures(types: CultureTypes) -> Array_1[CultureInfo]: ...
493
+ def GetFormat(self, formatType: typing.Type[typing.Any]) -> typing.Any: ...
494
+ def GetHashCode(self) -> int: ...
495
+ @staticmethod
496
+ def ReadOnly(ci: CultureInfo) -> CultureInfo: ...
497
+ def ToString(self) -> str: ...
498
+ # Skipped GetCultureInfo due to it being static, abstract and generic.
499
+
500
+ GetCultureInfo : GetCultureInfo_MethodGroup
501
+ class GetCultureInfo_MethodGroup:
502
+ @typing.overload
503
+ def __call__(self, culture: int) -> CultureInfo:...
504
+ @typing.overload
505
+ def __call__(self, name: str) -> CultureInfo:...
506
+ @typing.overload
507
+ def __call__(self, name: str, altName: str) -> CultureInfo:...
508
+ @typing.overload
509
+ def __call__(self, name: str, predefinedOnly: bool) -> CultureInfo:...
510
+
511
+
512
+
513
+ class CultureNotFoundException(ArgumentException):
514
+ @typing.overload
515
+ def __init__(self) -> None: ...
516
+ @typing.overload
517
+ def __init__(self, message: str) -> None: ...
518
+ @typing.overload
519
+ def __init__(self, message: str, innerException: Exception) -> None: ...
520
+ @typing.overload
521
+ def __init__(self, message: str, invalidCultureId: int, innerException: Exception) -> None: ...
522
+ @typing.overload
523
+ def __init__(self, message: str, invalidCultureName: str, innerException: Exception) -> None: ...
524
+ @typing.overload
525
+ def __init__(self, paramName: str, invalidCultureId: int, message: str) -> None: ...
526
+ @typing.overload
527
+ def __init__(self, paramName: str, invalidCultureName: str, message: str) -> None: ...
528
+ @typing.overload
529
+ def __init__(self, paramName: str, message: str) -> None: ...
530
+ @property
531
+ def Data(self) -> IDictionary: ...
532
+ @property
533
+ def HelpLink(self) -> str: ...
534
+ @HelpLink.setter
535
+ def HelpLink(self, value: str) -> str: ...
536
+ @property
537
+ def HResult(self) -> int: ...
538
+ @HResult.setter
539
+ def HResult(self, value: int) -> int: ...
540
+ @property
541
+ def InnerException(self) -> Exception: ...
542
+ @property
543
+ def InvalidCultureId(self) -> typing.Optional[int]: ...
544
+ @property
545
+ def InvalidCultureName(self) -> str: ...
546
+ @property
547
+ def Message(self) -> str: ...
548
+ @property
549
+ def ParamName(self) -> str: ...
550
+ @property
551
+ def Source(self) -> str: ...
552
+ @Source.setter
553
+ def Source(self, value: str) -> str: ...
554
+ @property
555
+ def StackTrace(self) -> str: ...
556
+ @property
557
+ def TargetSite(self) -> MethodBase: ...
558
+ def GetObjectData(self, info: SerializationInfo, context: StreamingContext) -> None: ...
559
+
560
+
561
+ class CultureTypes(typing.SupportsInt):
562
+ @typing.overload
563
+ def __init__(self, value : int) -> None: ...
564
+ @typing.overload
565
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
566
+ def __int__(self) -> int: ...
567
+
568
+ # Values:
569
+ NeutralCultures : CultureTypes # 1
570
+ SpecificCultures : CultureTypes # 2
571
+ InstalledWin32Cultures : CultureTypes # 4
572
+ AllCultures : CultureTypes # 7
573
+ UserCustomCulture : CultureTypes # 8
574
+ ReplacementCultures : CultureTypes # 16
575
+ WindowsOnlyCultures : CultureTypes # 32
576
+ FrameworkCultures : CultureTypes # 64
577
+
578
+
579
+ class DateTimeFormatInfo(ICloneable, IFormatProvider):
580
+ def __init__(self) -> None: ...
581
+ @property
582
+ def AbbreviatedDayNames(self) -> Array_1[str]: ...
583
+ @AbbreviatedDayNames.setter
584
+ def AbbreviatedDayNames(self, value: Array_1[str]) -> Array_1[str]: ...
585
+ @property
586
+ def AbbreviatedMonthGenitiveNames(self) -> Array_1[str]: ...
587
+ @AbbreviatedMonthGenitiveNames.setter
588
+ def AbbreviatedMonthGenitiveNames(self, value: Array_1[str]) -> Array_1[str]: ...
589
+ @property
590
+ def AbbreviatedMonthNames(self) -> Array_1[str]: ...
591
+ @AbbreviatedMonthNames.setter
592
+ def AbbreviatedMonthNames(self, value: Array_1[str]) -> Array_1[str]: ...
593
+ @property
594
+ def AMDesignator(self) -> str: ...
595
+ @AMDesignator.setter
596
+ def AMDesignator(self, value: str) -> str: ...
597
+ @property
598
+ def Calendar(self) -> Calendar: ...
599
+ @Calendar.setter
600
+ def Calendar(self, value: Calendar) -> Calendar: ...
601
+ @property
602
+ def CalendarWeekRule(self) -> CalendarWeekRule: ...
603
+ @CalendarWeekRule.setter
604
+ def CalendarWeekRule(self, value: CalendarWeekRule) -> CalendarWeekRule: ...
605
+ @classmethod
606
+ @property
607
+ def CurrentInfo(cls) -> DateTimeFormatInfo: ...
608
+ @property
609
+ def DateSeparator(self) -> str: ...
610
+ @DateSeparator.setter
611
+ def DateSeparator(self, value: str) -> str: ...
612
+ @property
613
+ def DayNames(self) -> Array_1[str]: ...
614
+ @DayNames.setter
615
+ def DayNames(self, value: Array_1[str]) -> Array_1[str]: ...
616
+ @property
617
+ def FirstDayOfWeek(self) -> DayOfWeek: ...
618
+ @FirstDayOfWeek.setter
619
+ def FirstDayOfWeek(self, value: DayOfWeek) -> DayOfWeek: ...
620
+ @property
621
+ def FullDateTimePattern(self) -> str: ...
622
+ @FullDateTimePattern.setter
623
+ def FullDateTimePattern(self, value: str) -> str: ...
624
+ @classmethod
625
+ @property
626
+ def InvariantInfo(cls) -> DateTimeFormatInfo: ...
627
+ @property
628
+ def IsReadOnly(self) -> bool: ...
629
+ @property
630
+ def LongDatePattern(self) -> str: ...
631
+ @LongDatePattern.setter
632
+ def LongDatePattern(self, value: str) -> str: ...
633
+ @property
634
+ def LongTimePattern(self) -> str: ...
635
+ @LongTimePattern.setter
636
+ def LongTimePattern(self, value: str) -> str: ...
637
+ @property
638
+ def MonthDayPattern(self) -> str: ...
639
+ @MonthDayPattern.setter
640
+ def MonthDayPattern(self, value: str) -> str: ...
641
+ @property
642
+ def MonthGenitiveNames(self) -> Array_1[str]: ...
643
+ @MonthGenitiveNames.setter
644
+ def MonthGenitiveNames(self, value: Array_1[str]) -> Array_1[str]: ...
645
+ @property
646
+ def MonthNames(self) -> Array_1[str]: ...
647
+ @MonthNames.setter
648
+ def MonthNames(self, value: Array_1[str]) -> Array_1[str]: ...
649
+ @property
650
+ def NativeCalendarName(self) -> str: ...
651
+ @property
652
+ def PMDesignator(self) -> str: ...
653
+ @PMDesignator.setter
654
+ def PMDesignator(self, value: str) -> str: ...
655
+ @property
656
+ def RFC1123Pattern(self) -> str: ...
657
+ @property
658
+ def ShortDatePattern(self) -> str: ...
659
+ @ShortDatePattern.setter
660
+ def ShortDatePattern(self, value: str) -> str: ...
661
+ @property
662
+ def ShortestDayNames(self) -> Array_1[str]: ...
663
+ @ShortestDayNames.setter
664
+ def ShortestDayNames(self, value: Array_1[str]) -> Array_1[str]: ...
665
+ @property
666
+ def ShortTimePattern(self) -> str: ...
667
+ @ShortTimePattern.setter
668
+ def ShortTimePattern(self, value: str) -> str: ...
669
+ @property
670
+ def SortableDateTimePattern(self) -> str: ...
671
+ @property
672
+ def TimeSeparator(self) -> str: ...
673
+ @TimeSeparator.setter
674
+ def TimeSeparator(self, value: str) -> str: ...
675
+ @property
676
+ def UniversalSortableDateTimePattern(self) -> str: ...
677
+ @property
678
+ def YearMonthPattern(self) -> str: ...
679
+ @YearMonthPattern.setter
680
+ def YearMonthPattern(self, value: str) -> str: ...
681
+ def Clone(self) -> typing.Any: ...
682
+ def GetAbbreviatedDayName(self, dayofweek: DayOfWeek) -> str: ...
683
+ def GetAbbreviatedEraName(self, era: int) -> str: ...
684
+ def GetAbbreviatedMonthName(self, month: int) -> str: ...
685
+ def GetDayName(self, dayofweek: DayOfWeek) -> str: ...
686
+ def GetEra(self, eraName: str) -> int: ...
687
+ def GetEraName(self, era: int) -> str: ...
688
+ def GetFormat(self, formatType: typing.Type[typing.Any]) -> typing.Any: ...
689
+ @staticmethod
690
+ def GetInstance(provider: IFormatProvider) -> DateTimeFormatInfo: ...
691
+ def GetMonthName(self, month: int) -> str: ...
692
+ def GetShortestDayName(self, dayOfWeek: DayOfWeek) -> str: ...
693
+ @staticmethod
694
+ def ReadOnly(dtfi: DateTimeFormatInfo) -> DateTimeFormatInfo: ...
695
+ def SetAllDateTimePatterns(self, patterns: Array_1[str], format: str) -> None: ...
696
+ # Skipped GetAllDateTimePatterns due to it being static, abstract and generic.
697
+
698
+ GetAllDateTimePatterns : GetAllDateTimePatterns_MethodGroup
699
+ class GetAllDateTimePatterns_MethodGroup:
700
+ @typing.overload
701
+ def __call__(self) -> Array_1[str]:...
702
+ @typing.overload
703
+ def __call__(self, format: str) -> Array_1[str]:...
704
+
705
+
706
+
707
+ class DateTimeStyles(typing.SupportsInt):
708
+ @typing.overload
709
+ def __init__(self, value : int) -> None: ...
710
+ @typing.overload
711
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
712
+ def __int__(self) -> int: ...
713
+
714
+ # Values:
715
+ None_ : DateTimeStyles # 0
716
+ AllowLeadingWhite : DateTimeStyles # 1
717
+ AllowTrailingWhite : DateTimeStyles # 2
718
+ AllowInnerWhite : DateTimeStyles # 4
719
+ AllowWhiteSpaces : DateTimeStyles # 7
720
+ NoCurrentDateDefault : DateTimeStyles # 8
721
+ AdjustToUniversal : DateTimeStyles # 16
722
+ AssumeLocal : DateTimeStyles # 32
723
+ AssumeUniversal : DateTimeStyles # 64
724
+ RoundtripKind : DateTimeStyles # 128
725
+
726
+
727
+ class DaylightTime:
728
+ def __init__(self, start: DateTime, end: DateTime, delta: TimeSpan) -> None: ...
729
+ @property
730
+ def Delta(self) -> TimeSpan: ...
731
+ @property
732
+ def End(self) -> DateTime: ...
733
+ @property
734
+ def Start(self) -> DateTime: ...
735
+
736
+
737
+ class DigitShapes(typing.SupportsInt):
738
+ @typing.overload
739
+ def __init__(self, value : int) -> None: ...
740
+ @typing.overload
741
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
742
+ def __int__(self) -> int: ...
743
+
744
+ # Values:
745
+ Context : DigitShapes # 0
746
+ None_ : DigitShapes # 1
747
+ NativeNational : DigitShapes # 2
748
+
749
+
750
+ class EastAsianLunisolarCalendar(Calendar):
751
+ @property
752
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
753
+ @property
754
+ def Eras(self) -> Array_1[int]: ...
755
+ @property
756
+ def IsReadOnly(self) -> bool: ...
757
+ @property
758
+ def MaxSupportedDateTime(self) -> DateTime: ...
759
+ @property
760
+ def MinSupportedDateTime(self) -> DateTime: ...
761
+ @property
762
+ def TwoDigitYearMax(self) -> int: ...
763
+ @TwoDigitYearMax.setter
764
+ def TwoDigitYearMax(self, value: int) -> int: ...
765
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
766
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
767
+ def GetCelestialStem(self, sexagenaryYear: int) -> int: ...
768
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
769
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
770
+ def GetDayOfYear(self, time: DateTime) -> int: ...
771
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
772
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
773
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
774
+ def GetMonth(self, time: DateTime) -> int: ...
775
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
776
+ def GetSexagenaryYear(self, time: DateTime) -> int: ...
777
+ def GetTerrestrialBranch(self, sexagenaryYear: int) -> int: ...
778
+ def GetYear(self, time: DateTime) -> int: ...
779
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
780
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
781
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
782
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
783
+ def ToFourDigitYear(self, year: int) -> int: ...
784
+
785
+
786
+ class GlobalizationExtensions(abc.ABC):
787
+ @staticmethod
788
+ def GetStringComparer(compareInfo: CompareInfo, options: CompareOptions) -> StringComparer: ...
789
+
790
+
791
+ class GregorianCalendar(Calendar):
792
+ @typing.overload
793
+ def __init__(self) -> None: ...
794
+ @typing.overload
795
+ def __init__(self, type: GregorianCalendarTypes) -> None: ...
796
+ ADEra : int
797
+ @property
798
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
799
+ @property
800
+ def CalendarType(self) -> GregorianCalendarTypes: ...
801
+ @CalendarType.setter
802
+ def CalendarType(self, value: GregorianCalendarTypes) -> GregorianCalendarTypes: ...
803
+ @property
804
+ def Eras(self) -> Array_1[int]: ...
805
+ @property
806
+ def IsReadOnly(self) -> bool: ...
807
+ @property
808
+ def MaxSupportedDateTime(self) -> DateTime: ...
809
+ @property
810
+ def MinSupportedDateTime(self) -> DateTime: ...
811
+ @property
812
+ def TwoDigitYearMax(self) -> int: ...
813
+ @TwoDigitYearMax.setter
814
+ def TwoDigitYearMax(self, value: int) -> int: ...
815
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
816
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
817
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
818
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
819
+ def GetDayOfYear(self, time: DateTime) -> int: ...
820
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
821
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
822
+ def GetEra(self, time: DateTime) -> int: ...
823
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
824
+ def GetMonth(self, time: DateTime) -> int: ...
825
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
826
+ def GetYear(self, time: DateTime) -> int: ...
827
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
828
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
829
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
830
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
831
+ def ToFourDigitYear(self, year: int) -> int: ...
832
+
833
+
834
+ class GregorianCalendarTypes(typing.SupportsInt):
835
+ @typing.overload
836
+ def __init__(self, value : int) -> None: ...
837
+ @typing.overload
838
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
839
+ def __int__(self) -> int: ...
840
+
841
+ # Values:
842
+ Localized : GregorianCalendarTypes # 1
843
+ USEnglish : GregorianCalendarTypes # 2
844
+ MiddleEastFrench : GregorianCalendarTypes # 9
845
+ Arabic : GregorianCalendarTypes # 10
846
+ TransliteratedEnglish : GregorianCalendarTypes # 11
847
+ TransliteratedFrench : GregorianCalendarTypes # 12
848
+
849
+
850
+ class HebrewCalendar(Calendar):
851
+ def __init__(self) -> None: ...
852
+ HebrewEra : int
853
+ @property
854
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
855
+ @property
856
+ def Eras(self) -> Array_1[int]: ...
857
+ @property
858
+ def IsReadOnly(self) -> bool: ...
859
+ @property
860
+ def MaxSupportedDateTime(self) -> DateTime: ...
861
+ @property
862
+ def MinSupportedDateTime(self) -> DateTime: ...
863
+ @property
864
+ def TwoDigitYearMax(self) -> int: ...
865
+ @TwoDigitYearMax.setter
866
+ def TwoDigitYearMax(self, value: int) -> int: ...
867
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
868
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
869
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
870
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
871
+ def GetDayOfYear(self, time: DateTime) -> int: ...
872
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
873
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
874
+ def GetEra(self, time: DateTime) -> int: ...
875
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
876
+ def GetMonth(self, time: DateTime) -> int: ...
877
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
878
+ def GetYear(self, time: DateTime) -> int: ...
879
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
880
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
881
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
882
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
883
+ def ToFourDigitYear(self, year: int) -> int: ...
884
+
885
+
886
+ class HijriCalendar(Calendar):
887
+ def __init__(self) -> None: ...
888
+ HijriEra : int
889
+ @property
890
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
891
+ @property
892
+ def Eras(self) -> Array_1[int]: ...
893
+ @property
894
+ def HijriAdjustment(self) -> int: ...
895
+ @HijriAdjustment.setter
896
+ def HijriAdjustment(self, value: int) -> int: ...
897
+ @property
898
+ def IsReadOnly(self) -> bool: ...
899
+ @property
900
+ def MaxSupportedDateTime(self) -> DateTime: ...
901
+ @property
902
+ def MinSupportedDateTime(self) -> DateTime: ...
903
+ @property
904
+ def TwoDigitYearMax(self) -> int: ...
905
+ @TwoDigitYearMax.setter
906
+ def TwoDigitYearMax(self, value: int) -> int: ...
907
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
908
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
909
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
910
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
911
+ def GetDayOfYear(self, time: DateTime) -> int: ...
912
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
913
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
914
+ def GetEra(self, time: DateTime) -> int: ...
915
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
916
+ def GetMonth(self, time: DateTime) -> int: ...
917
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
918
+ def GetYear(self, time: DateTime) -> int: ...
919
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
920
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
921
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
922
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
923
+ def ToFourDigitYear(self, year: int) -> int: ...
924
+
925
+
926
+ class IdnMapping:
927
+ def __init__(self) -> None: ...
928
+ @property
929
+ def AllowUnassigned(self) -> bool: ...
930
+ @AllowUnassigned.setter
931
+ def AllowUnassigned(self, value: bool) -> bool: ...
932
+ @property
933
+ def UseStd3AsciiRules(self) -> bool: ...
934
+ @UseStd3AsciiRules.setter
935
+ def UseStd3AsciiRules(self, value: bool) -> bool: ...
936
+ def Equals(self, obj: typing.Any) -> bool: ...
937
+ def GetHashCode(self) -> int: ...
938
+ # Skipped GetAscii due to it being static, abstract and generic.
939
+
940
+ GetAscii : GetAscii_MethodGroup
941
+ class GetAscii_MethodGroup:
942
+ @typing.overload
943
+ def __call__(self, unicode: str) -> str:...
944
+ @typing.overload
945
+ def __call__(self, unicode: str, index: int) -> str:...
946
+ @typing.overload
947
+ def __call__(self, unicode: str, index: int, count: int) -> str:...
948
+
949
+ # Skipped GetUnicode due to it being static, abstract and generic.
950
+
951
+ GetUnicode : GetUnicode_MethodGroup
952
+ class GetUnicode_MethodGroup:
953
+ @typing.overload
954
+ def __call__(self, ascii: str) -> str:...
955
+ @typing.overload
956
+ def __call__(self, ascii: str, index: int) -> str:...
957
+ @typing.overload
958
+ def __call__(self, ascii: str, index: int, count: int) -> str:...
959
+
960
+
961
+
962
+ class ISOWeek(abc.ABC):
963
+ @staticmethod
964
+ def GetWeekOfYear(date: DateTime) -> int: ...
965
+ @staticmethod
966
+ def GetWeeksInYear(year: int) -> int: ...
967
+ @staticmethod
968
+ def GetYear(date: DateTime) -> int: ...
969
+ @staticmethod
970
+ def GetYearEnd(year: int) -> DateTime: ...
971
+ @staticmethod
972
+ def GetYearStart(year: int) -> DateTime: ...
973
+ @staticmethod
974
+ def ToDateTime(year: int, week: int, dayOfWeek: DayOfWeek) -> DateTime: ...
975
+
976
+
977
+ class JapaneseCalendar(Calendar):
978
+ def __init__(self) -> None: ...
979
+ @property
980
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
981
+ @property
982
+ def Eras(self) -> Array_1[int]: ...
983
+ @property
984
+ def IsReadOnly(self) -> bool: ...
985
+ @property
986
+ def MaxSupportedDateTime(self) -> DateTime: ...
987
+ @property
988
+ def MinSupportedDateTime(self) -> DateTime: ...
989
+ @property
990
+ def TwoDigitYearMax(self) -> int: ...
991
+ @TwoDigitYearMax.setter
992
+ def TwoDigitYearMax(self, value: int) -> int: ...
993
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
994
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
995
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
996
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
997
+ def GetDayOfYear(self, time: DateTime) -> int: ...
998
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
999
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
1000
+ def GetEra(self, time: DateTime) -> int: ...
1001
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
1002
+ def GetMonth(self, time: DateTime) -> int: ...
1003
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
1004
+ def GetWeekOfYear(self, time: DateTime, rule: CalendarWeekRule, firstDayOfWeek: DayOfWeek) -> int: ...
1005
+ def GetYear(self, time: DateTime) -> int: ...
1006
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
1007
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
1008
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
1009
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
1010
+ def ToFourDigitYear(self, year: int) -> int: ...
1011
+
1012
+
1013
+ class JapaneseLunisolarCalendar(EastAsianLunisolarCalendar):
1014
+ def __init__(self) -> None: ...
1015
+ JapaneseEra : int
1016
+ @property
1017
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
1018
+ @property
1019
+ def Eras(self) -> Array_1[int]: ...
1020
+ @property
1021
+ def IsReadOnly(self) -> bool: ...
1022
+ @property
1023
+ def MaxSupportedDateTime(self) -> DateTime: ...
1024
+ @property
1025
+ def MinSupportedDateTime(self) -> DateTime: ...
1026
+ @property
1027
+ def TwoDigitYearMax(self) -> int: ...
1028
+ @TwoDigitYearMax.setter
1029
+ def TwoDigitYearMax(self, value: int) -> int: ...
1030
+ def GetEra(self, time: DateTime) -> int: ...
1031
+
1032
+
1033
+ class JulianCalendar(Calendar):
1034
+ def __init__(self) -> None: ...
1035
+ JulianEra : int
1036
+ @property
1037
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
1038
+ @property
1039
+ def Eras(self) -> Array_1[int]: ...
1040
+ @property
1041
+ def IsReadOnly(self) -> bool: ...
1042
+ @property
1043
+ def MaxSupportedDateTime(self) -> DateTime: ...
1044
+ @property
1045
+ def MinSupportedDateTime(self) -> DateTime: ...
1046
+ @property
1047
+ def TwoDigitYearMax(self) -> int: ...
1048
+ @TwoDigitYearMax.setter
1049
+ def TwoDigitYearMax(self, value: int) -> int: ...
1050
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
1051
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
1052
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
1053
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
1054
+ def GetDayOfYear(self, time: DateTime) -> int: ...
1055
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
1056
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
1057
+ def GetEra(self, time: DateTime) -> int: ...
1058
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
1059
+ def GetMonth(self, time: DateTime) -> int: ...
1060
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
1061
+ def GetYear(self, time: DateTime) -> int: ...
1062
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
1063
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
1064
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
1065
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
1066
+ def ToFourDigitYear(self, year: int) -> int: ...
1067
+
1068
+
1069
+ class KoreanCalendar(Calendar):
1070
+ def __init__(self) -> None: ...
1071
+ KoreanEra : int
1072
+ @property
1073
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
1074
+ @property
1075
+ def Eras(self) -> Array_1[int]: ...
1076
+ @property
1077
+ def IsReadOnly(self) -> bool: ...
1078
+ @property
1079
+ def MaxSupportedDateTime(self) -> DateTime: ...
1080
+ @property
1081
+ def MinSupportedDateTime(self) -> DateTime: ...
1082
+ @property
1083
+ def TwoDigitYearMax(self) -> int: ...
1084
+ @TwoDigitYearMax.setter
1085
+ def TwoDigitYearMax(self, value: int) -> int: ...
1086
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
1087
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
1088
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
1089
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
1090
+ def GetDayOfYear(self, time: DateTime) -> int: ...
1091
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
1092
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
1093
+ def GetEra(self, time: DateTime) -> int: ...
1094
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
1095
+ def GetMonth(self, time: DateTime) -> int: ...
1096
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
1097
+ def GetWeekOfYear(self, time: DateTime, rule: CalendarWeekRule, firstDayOfWeek: DayOfWeek) -> int: ...
1098
+ def GetYear(self, time: DateTime) -> int: ...
1099
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
1100
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
1101
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
1102
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
1103
+ def ToFourDigitYear(self, year: int) -> int: ...
1104
+
1105
+
1106
+ class KoreanLunisolarCalendar(EastAsianLunisolarCalendar):
1107
+ def __init__(self) -> None: ...
1108
+ GregorianEra : int
1109
+ @property
1110
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
1111
+ @property
1112
+ def Eras(self) -> Array_1[int]: ...
1113
+ @property
1114
+ def IsReadOnly(self) -> bool: ...
1115
+ @property
1116
+ def MaxSupportedDateTime(self) -> DateTime: ...
1117
+ @property
1118
+ def MinSupportedDateTime(self) -> DateTime: ...
1119
+ @property
1120
+ def TwoDigitYearMax(self) -> int: ...
1121
+ @TwoDigitYearMax.setter
1122
+ def TwoDigitYearMax(self, value: int) -> int: ...
1123
+ def GetEra(self, time: DateTime) -> int: ...
1124
+
1125
+
1126
+ class NumberFormatInfo(ICloneable, IFormatProvider):
1127
+ def __init__(self) -> None: ...
1128
+ @property
1129
+ def CurrencyDecimalDigits(self) -> int: ...
1130
+ @CurrencyDecimalDigits.setter
1131
+ def CurrencyDecimalDigits(self, value: int) -> int: ...
1132
+ @property
1133
+ def CurrencyDecimalSeparator(self) -> str: ...
1134
+ @CurrencyDecimalSeparator.setter
1135
+ def CurrencyDecimalSeparator(self, value: str) -> str: ...
1136
+ @property
1137
+ def CurrencyGroupSeparator(self) -> str: ...
1138
+ @CurrencyGroupSeparator.setter
1139
+ def CurrencyGroupSeparator(self, value: str) -> str: ...
1140
+ @property
1141
+ def CurrencyGroupSizes(self) -> Array_1[int]: ...
1142
+ @CurrencyGroupSizes.setter
1143
+ def CurrencyGroupSizes(self, value: Array_1[int]) -> Array_1[int]: ...
1144
+ @property
1145
+ def CurrencyNegativePattern(self) -> int: ...
1146
+ @CurrencyNegativePattern.setter
1147
+ def CurrencyNegativePattern(self, value: int) -> int: ...
1148
+ @property
1149
+ def CurrencyPositivePattern(self) -> int: ...
1150
+ @CurrencyPositivePattern.setter
1151
+ def CurrencyPositivePattern(self, value: int) -> int: ...
1152
+ @property
1153
+ def CurrencySymbol(self) -> str: ...
1154
+ @CurrencySymbol.setter
1155
+ def CurrencySymbol(self, value: str) -> str: ...
1156
+ @classmethod
1157
+ @property
1158
+ def CurrentInfo(cls) -> NumberFormatInfo: ...
1159
+ @property
1160
+ def DigitSubstitution(self) -> DigitShapes: ...
1161
+ @DigitSubstitution.setter
1162
+ def DigitSubstitution(self, value: DigitShapes) -> DigitShapes: ...
1163
+ @classmethod
1164
+ @property
1165
+ def InvariantInfo(cls) -> NumberFormatInfo: ...
1166
+ @property
1167
+ def IsReadOnly(self) -> bool: ...
1168
+ @property
1169
+ def NaNSymbol(self) -> str: ...
1170
+ @NaNSymbol.setter
1171
+ def NaNSymbol(self, value: str) -> str: ...
1172
+ @property
1173
+ def NativeDigits(self) -> Array_1[str]: ...
1174
+ @NativeDigits.setter
1175
+ def NativeDigits(self, value: Array_1[str]) -> Array_1[str]: ...
1176
+ @property
1177
+ def NegativeInfinitySymbol(self) -> str: ...
1178
+ @NegativeInfinitySymbol.setter
1179
+ def NegativeInfinitySymbol(self, value: str) -> str: ...
1180
+ @property
1181
+ def NegativeSign(self) -> str: ...
1182
+ @NegativeSign.setter
1183
+ def NegativeSign(self, value: str) -> str: ...
1184
+ @property
1185
+ def NumberDecimalDigits(self) -> int: ...
1186
+ @NumberDecimalDigits.setter
1187
+ def NumberDecimalDigits(self, value: int) -> int: ...
1188
+ @property
1189
+ def NumberDecimalSeparator(self) -> str: ...
1190
+ @NumberDecimalSeparator.setter
1191
+ def NumberDecimalSeparator(self, value: str) -> str: ...
1192
+ @property
1193
+ def NumberGroupSeparator(self) -> str: ...
1194
+ @NumberGroupSeparator.setter
1195
+ def NumberGroupSeparator(self, value: str) -> str: ...
1196
+ @property
1197
+ def NumberGroupSizes(self) -> Array_1[int]: ...
1198
+ @NumberGroupSizes.setter
1199
+ def NumberGroupSizes(self, value: Array_1[int]) -> Array_1[int]: ...
1200
+ @property
1201
+ def NumberNegativePattern(self) -> int: ...
1202
+ @NumberNegativePattern.setter
1203
+ def NumberNegativePattern(self, value: int) -> int: ...
1204
+ @property
1205
+ def PercentDecimalDigits(self) -> int: ...
1206
+ @PercentDecimalDigits.setter
1207
+ def PercentDecimalDigits(self, value: int) -> int: ...
1208
+ @property
1209
+ def PercentDecimalSeparator(self) -> str: ...
1210
+ @PercentDecimalSeparator.setter
1211
+ def PercentDecimalSeparator(self, value: str) -> str: ...
1212
+ @property
1213
+ def PercentGroupSeparator(self) -> str: ...
1214
+ @PercentGroupSeparator.setter
1215
+ def PercentGroupSeparator(self, value: str) -> str: ...
1216
+ @property
1217
+ def PercentGroupSizes(self) -> Array_1[int]: ...
1218
+ @PercentGroupSizes.setter
1219
+ def PercentGroupSizes(self, value: Array_1[int]) -> Array_1[int]: ...
1220
+ @property
1221
+ def PercentNegativePattern(self) -> int: ...
1222
+ @PercentNegativePattern.setter
1223
+ def PercentNegativePattern(self, value: int) -> int: ...
1224
+ @property
1225
+ def PercentPositivePattern(self) -> int: ...
1226
+ @PercentPositivePattern.setter
1227
+ def PercentPositivePattern(self, value: int) -> int: ...
1228
+ @property
1229
+ def PercentSymbol(self) -> str: ...
1230
+ @PercentSymbol.setter
1231
+ def PercentSymbol(self, value: str) -> str: ...
1232
+ @property
1233
+ def PerMilleSymbol(self) -> str: ...
1234
+ @PerMilleSymbol.setter
1235
+ def PerMilleSymbol(self, value: str) -> str: ...
1236
+ @property
1237
+ def PositiveInfinitySymbol(self) -> str: ...
1238
+ @PositiveInfinitySymbol.setter
1239
+ def PositiveInfinitySymbol(self, value: str) -> str: ...
1240
+ @property
1241
+ def PositiveSign(self) -> str: ...
1242
+ @PositiveSign.setter
1243
+ def PositiveSign(self, value: str) -> str: ...
1244
+ def Clone(self) -> typing.Any: ...
1245
+ def GetFormat(self, formatType: typing.Type[typing.Any]) -> typing.Any: ...
1246
+ @staticmethod
1247
+ def GetInstance(formatProvider: IFormatProvider) -> NumberFormatInfo: ...
1248
+ @staticmethod
1249
+ def ReadOnly(nfi: NumberFormatInfo) -> NumberFormatInfo: ...
1250
+
1251
+
1252
+ class NumberStyles(typing.SupportsInt):
1253
+ @typing.overload
1254
+ def __init__(self, value : int) -> None: ...
1255
+ @typing.overload
1256
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1257
+ def __int__(self) -> int: ...
1258
+
1259
+ # Values:
1260
+ None_ : NumberStyles # 0
1261
+ AllowLeadingWhite : NumberStyles # 1
1262
+ AllowTrailingWhite : NumberStyles # 2
1263
+ AllowLeadingSign : NumberStyles # 4
1264
+ Integer : NumberStyles # 7
1265
+ AllowTrailingSign : NumberStyles # 8
1266
+ AllowParentheses : NumberStyles # 16
1267
+ AllowDecimalPoint : NumberStyles # 32
1268
+ AllowThousands : NumberStyles # 64
1269
+ Number : NumberStyles # 111
1270
+ AllowExponent : NumberStyles # 128
1271
+ Float : NumberStyles # 167
1272
+ AllowCurrencySymbol : NumberStyles # 256
1273
+ Currency : NumberStyles # 383
1274
+ Any : NumberStyles # 511
1275
+ AllowHexSpecifier : NumberStyles # 512
1276
+ HexNumber : NumberStyles # 515
1277
+ AllowBinarySpecifier : NumberStyles # 1024
1278
+ BinaryNumber : NumberStyles # 1027
1279
+
1280
+
1281
+ class PersianCalendar(Calendar):
1282
+ def __init__(self) -> None: ...
1283
+ PersianEra : int
1284
+ @property
1285
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
1286
+ @property
1287
+ def Eras(self) -> Array_1[int]: ...
1288
+ @property
1289
+ def IsReadOnly(self) -> bool: ...
1290
+ @property
1291
+ def MaxSupportedDateTime(self) -> DateTime: ...
1292
+ @property
1293
+ def MinSupportedDateTime(self) -> DateTime: ...
1294
+ @property
1295
+ def TwoDigitYearMax(self) -> int: ...
1296
+ @TwoDigitYearMax.setter
1297
+ def TwoDigitYearMax(self, value: int) -> int: ...
1298
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
1299
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
1300
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
1301
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
1302
+ def GetDayOfYear(self, time: DateTime) -> int: ...
1303
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
1304
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
1305
+ def GetEra(self, time: DateTime) -> int: ...
1306
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
1307
+ def GetMonth(self, time: DateTime) -> int: ...
1308
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
1309
+ def GetYear(self, time: DateTime) -> int: ...
1310
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
1311
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
1312
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
1313
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
1314
+ def ToFourDigitYear(self, year: int) -> int: ...
1315
+
1316
+
1317
+ class RegionInfo:
1318
+ @typing.overload
1319
+ def __init__(self, culture: int) -> None: ...
1320
+ @typing.overload
1321
+ def __init__(self, name: str) -> None: ...
1322
+ @property
1323
+ def CurrencyEnglishName(self) -> str: ...
1324
+ @property
1325
+ def CurrencyNativeName(self) -> str: ...
1326
+ @property
1327
+ def CurrencySymbol(self) -> str: ...
1328
+ @classmethod
1329
+ @property
1330
+ def CurrentRegion(cls) -> RegionInfo: ...
1331
+ @property
1332
+ def DisplayName(self) -> str: ...
1333
+ @property
1334
+ def EnglishName(self) -> str: ...
1335
+ @property
1336
+ def GeoId(self) -> int: ...
1337
+ @property
1338
+ def IsMetric(self) -> bool: ...
1339
+ @property
1340
+ def ISOCurrencySymbol(self) -> str: ...
1341
+ @property
1342
+ def Name(self) -> str: ...
1343
+ @property
1344
+ def NativeName(self) -> str: ...
1345
+ @property
1346
+ def ThreeLetterISORegionName(self) -> str: ...
1347
+ @property
1348
+ def ThreeLetterWindowsRegionName(self) -> str: ...
1349
+ @property
1350
+ def TwoLetterISORegionName(self) -> str: ...
1351
+ def Equals(self, value: typing.Any) -> bool: ...
1352
+ def GetHashCode(self) -> int: ...
1353
+ def ToString(self) -> str: ...
1354
+
1355
+
1356
+ class SortKey:
1357
+ @property
1358
+ def KeyData(self) -> Array_1[int]: ...
1359
+ @property
1360
+ def OriginalString(self) -> str: ...
1361
+ @staticmethod
1362
+ def Compare(sortkey1: SortKey, sortkey2: SortKey) -> int: ...
1363
+ def Equals(self, value: typing.Any) -> bool: ...
1364
+ def GetHashCode(self) -> int: ...
1365
+ def ToString(self) -> str: ...
1366
+
1367
+
1368
+ class SortVersion(IEquatable_1[SortVersion]):
1369
+ def __init__(self, fullVersion: int, sortId: Guid) -> None: ...
1370
+ @property
1371
+ def FullVersion(self) -> int: ...
1372
+ @property
1373
+ def SortId(self) -> Guid: ...
1374
+ def GetHashCode(self) -> int: ...
1375
+ def __eq__(self, left: SortVersion, right: SortVersion) -> bool: ...
1376
+ def __ne__(self, left: SortVersion, right: SortVersion) -> bool: ...
1377
+ # Skipped Equals due to it being static, abstract and generic.
1378
+
1379
+ Equals : Equals_MethodGroup
1380
+ class Equals_MethodGroup:
1381
+ @typing.overload
1382
+ def __call__(self, other: SortVersion) -> bool:...
1383
+ @typing.overload
1384
+ def __call__(self, obj: typing.Any) -> bool:...
1385
+
1386
+
1387
+
1388
+ class StringInfo:
1389
+ @typing.overload
1390
+ def __init__(self) -> None: ...
1391
+ @typing.overload
1392
+ def __init__(self, value: str) -> None: ...
1393
+ @property
1394
+ def LengthInTextElements(self) -> int: ...
1395
+ @property
1396
+ def String(self) -> str: ...
1397
+ @String.setter
1398
+ def String(self, value: str) -> str: ...
1399
+ def Equals(self, value: typing.Any) -> bool: ...
1400
+ def GetHashCode(self) -> int: ...
1401
+ @staticmethod
1402
+ def ParseCombiningCharacters(str: str) -> Array_1[int]: ...
1403
+ # Skipped GetNextTextElement due to it being static, abstract and generic.
1404
+
1405
+ GetNextTextElement : GetNextTextElement_MethodGroup
1406
+ class GetNextTextElement_MethodGroup:
1407
+ @typing.overload
1408
+ def __call__(self, str: str) -> str:...
1409
+ @typing.overload
1410
+ def __call__(self, str: str, index: int) -> str:...
1411
+
1412
+ # Skipped GetNextTextElementLength due to it being static, abstract and generic.
1413
+
1414
+ GetNextTextElementLength : GetNextTextElementLength_MethodGroup
1415
+ class GetNextTextElementLength_MethodGroup:
1416
+ @typing.overload
1417
+ def __call__(self, str: ReadOnlySpan_1[str]) -> int:...
1418
+ @typing.overload
1419
+ def __call__(self, str: str) -> int:...
1420
+ @typing.overload
1421
+ def __call__(self, str: str, index: int) -> int:...
1422
+
1423
+ # Skipped GetTextElementEnumerator due to it being static, abstract and generic.
1424
+
1425
+ GetTextElementEnumerator : GetTextElementEnumerator_MethodGroup
1426
+ class GetTextElementEnumerator_MethodGroup:
1427
+ @typing.overload
1428
+ def __call__(self, str: str) -> TextElementEnumerator:...
1429
+ @typing.overload
1430
+ def __call__(self, str: str, index: int) -> TextElementEnumerator:...
1431
+
1432
+ # Skipped SubstringByTextElements due to it being static, abstract and generic.
1433
+
1434
+ SubstringByTextElements : SubstringByTextElements_MethodGroup
1435
+ class SubstringByTextElements_MethodGroup:
1436
+ @typing.overload
1437
+ def __call__(self, startingTextElement: int) -> str:...
1438
+ @typing.overload
1439
+ def __call__(self, startingTextElement: int, lengthInTextElements: int) -> str:...
1440
+
1441
+
1442
+
1443
+ class TaiwanCalendar(Calendar):
1444
+ def __init__(self) -> None: ...
1445
+ @property
1446
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
1447
+ @property
1448
+ def Eras(self) -> Array_1[int]: ...
1449
+ @property
1450
+ def IsReadOnly(self) -> bool: ...
1451
+ @property
1452
+ def MaxSupportedDateTime(self) -> DateTime: ...
1453
+ @property
1454
+ def MinSupportedDateTime(self) -> DateTime: ...
1455
+ @property
1456
+ def TwoDigitYearMax(self) -> int: ...
1457
+ @TwoDigitYearMax.setter
1458
+ def TwoDigitYearMax(self, value: int) -> int: ...
1459
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
1460
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
1461
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
1462
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
1463
+ def GetDayOfYear(self, time: DateTime) -> int: ...
1464
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
1465
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
1466
+ def GetEra(self, time: DateTime) -> int: ...
1467
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
1468
+ def GetMonth(self, time: DateTime) -> int: ...
1469
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
1470
+ def GetWeekOfYear(self, time: DateTime, rule: CalendarWeekRule, firstDayOfWeek: DayOfWeek) -> int: ...
1471
+ def GetYear(self, time: DateTime) -> int: ...
1472
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
1473
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
1474
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
1475
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
1476
+ def ToFourDigitYear(self, year: int) -> int: ...
1477
+
1478
+
1479
+ class TaiwanLunisolarCalendar(EastAsianLunisolarCalendar):
1480
+ def __init__(self) -> None: ...
1481
+ @property
1482
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
1483
+ @property
1484
+ def Eras(self) -> Array_1[int]: ...
1485
+ @property
1486
+ def IsReadOnly(self) -> bool: ...
1487
+ @property
1488
+ def MaxSupportedDateTime(self) -> DateTime: ...
1489
+ @property
1490
+ def MinSupportedDateTime(self) -> DateTime: ...
1491
+ @property
1492
+ def TwoDigitYearMax(self) -> int: ...
1493
+ @TwoDigitYearMax.setter
1494
+ def TwoDigitYearMax(self, value: int) -> int: ...
1495
+ def GetEra(self, time: DateTime) -> int: ...
1496
+
1497
+
1498
+ class TextElementEnumerator(IEnumerator):
1499
+ @property
1500
+ def Current(self) -> typing.Any: ...
1501
+ @property
1502
+ def ElementIndex(self) -> int: ...
1503
+ def GetTextElement(self) -> str: ...
1504
+ def MoveNext(self) -> bool: ...
1505
+ def Reset(self) -> None: ...
1506
+
1507
+
1508
+ class TextInfo(IDeserializationCallback, ICloneable):
1509
+ @property
1510
+ def ANSICodePage(self) -> int: ...
1511
+ @property
1512
+ def CultureName(self) -> str: ...
1513
+ @property
1514
+ def EBCDICCodePage(self) -> int: ...
1515
+ @property
1516
+ def IsReadOnly(self) -> bool: ...
1517
+ @property
1518
+ def IsRightToLeft(self) -> bool: ...
1519
+ @property
1520
+ def LCID(self) -> int: ...
1521
+ @property
1522
+ def ListSeparator(self) -> str: ...
1523
+ @ListSeparator.setter
1524
+ def ListSeparator(self, value: str) -> str: ...
1525
+ @property
1526
+ def MacCodePage(self) -> int: ...
1527
+ @property
1528
+ def OEMCodePage(self) -> int: ...
1529
+ def Clone(self) -> typing.Any: ...
1530
+ def Equals(self, obj: typing.Any) -> bool: ...
1531
+ def GetHashCode(self) -> int: ...
1532
+ @staticmethod
1533
+ def ReadOnly(textInfo: TextInfo) -> TextInfo: ...
1534
+ def ToString(self) -> str: ...
1535
+ def ToTitleCase(self, str: str) -> str: ...
1536
+ # Skipped ToLower due to it being static, abstract and generic.
1537
+
1538
+ ToLower : ToLower_MethodGroup
1539
+ class ToLower_MethodGroup:
1540
+ def __call__(self, c: str) -> str:...
1541
+ # Method ToLower(str : String) was skipped since it collides with above method
1542
+
1543
+ # Skipped ToUpper due to it being static, abstract and generic.
1544
+
1545
+ ToUpper : ToUpper_MethodGroup
1546
+ class ToUpper_MethodGroup:
1547
+ def __call__(self, c: str) -> str:...
1548
+ # Method ToUpper(str : String) was skipped since it collides with above method
1549
+
1550
+
1551
+
1552
+ class ThaiBuddhistCalendar(Calendar):
1553
+ def __init__(self) -> None: ...
1554
+ ThaiBuddhistEra : int
1555
+ @property
1556
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
1557
+ @property
1558
+ def Eras(self) -> Array_1[int]: ...
1559
+ @property
1560
+ def IsReadOnly(self) -> bool: ...
1561
+ @property
1562
+ def MaxSupportedDateTime(self) -> DateTime: ...
1563
+ @property
1564
+ def MinSupportedDateTime(self) -> DateTime: ...
1565
+ @property
1566
+ def TwoDigitYearMax(self) -> int: ...
1567
+ @TwoDigitYearMax.setter
1568
+ def TwoDigitYearMax(self, value: int) -> int: ...
1569
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
1570
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
1571
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
1572
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
1573
+ def GetDayOfYear(self, time: DateTime) -> int: ...
1574
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
1575
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
1576
+ def GetEra(self, time: DateTime) -> int: ...
1577
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
1578
+ def GetMonth(self, time: DateTime) -> int: ...
1579
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
1580
+ def GetWeekOfYear(self, time: DateTime, rule: CalendarWeekRule, firstDayOfWeek: DayOfWeek) -> int: ...
1581
+ def GetYear(self, time: DateTime) -> int: ...
1582
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
1583
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
1584
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
1585
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
1586
+ def ToFourDigitYear(self, year: int) -> int: ...
1587
+
1588
+
1589
+ class TimeSpanStyles(typing.SupportsInt):
1590
+ @typing.overload
1591
+ def __init__(self, value : int) -> None: ...
1592
+ @typing.overload
1593
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1594
+ def __int__(self) -> int: ...
1595
+
1596
+ # Values:
1597
+ None_ : TimeSpanStyles # 0
1598
+ AssumeNegative : TimeSpanStyles # 1
1599
+
1600
+
1601
+ class UmAlQuraCalendar(Calendar):
1602
+ def __init__(self) -> None: ...
1603
+ UmAlQuraEra : int
1604
+ @property
1605
+ def AlgorithmType(self) -> CalendarAlgorithmType: ...
1606
+ @property
1607
+ def Eras(self) -> Array_1[int]: ...
1608
+ @property
1609
+ def IsReadOnly(self) -> bool: ...
1610
+ @property
1611
+ def MaxSupportedDateTime(self) -> DateTime: ...
1612
+ @property
1613
+ def MinSupportedDateTime(self) -> DateTime: ...
1614
+ @property
1615
+ def TwoDigitYearMax(self) -> int: ...
1616
+ @TwoDigitYearMax.setter
1617
+ def TwoDigitYearMax(self, value: int) -> int: ...
1618
+ def AddMonths(self, time: DateTime, months: int) -> DateTime: ...
1619
+ def AddYears(self, time: DateTime, years: int) -> DateTime: ...
1620
+ def GetDayOfMonth(self, time: DateTime) -> int: ...
1621
+ def GetDayOfWeek(self, time: DateTime) -> DayOfWeek: ...
1622
+ def GetDayOfYear(self, time: DateTime) -> int: ...
1623
+ def GetDaysInMonth(self, year: int, month: int, era: int) -> int: ...
1624
+ def GetDaysInYear(self, year: int, era: int) -> int: ...
1625
+ def GetEra(self, time: DateTime) -> int: ...
1626
+ def GetLeapMonth(self, year: int, era: int) -> int: ...
1627
+ def GetMonth(self, time: DateTime) -> int: ...
1628
+ def GetMonthsInYear(self, year: int, era: int) -> int: ...
1629
+ def GetYear(self, time: DateTime) -> int: ...
1630
+ def IsLeapDay(self, year: int, month: int, day: int, era: int) -> bool: ...
1631
+ def IsLeapMonth(self, year: int, month: int, era: int) -> bool: ...
1632
+ def IsLeapYear(self, year: int, era: int) -> bool: ...
1633
+ def ToDateTime(self, year: int, month: int, day: int, hour: int, minute: int, second: int, millisecond: int, era: int) -> DateTime: ...
1634
+ def ToFourDigitYear(self, year: int) -> int: ...
1635
+
1636
+
1637
+ class UnicodeCategory(typing.SupportsInt):
1638
+ @typing.overload
1639
+ def __init__(self, value : int) -> None: ...
1640
+ @typing.overload
1641
+ def __init__(self, value : int, force_if_true: bool) -> None: ...
1642
+ def __int__(self) -> int: ...
1643
+
1644
+ # Values:
1645
+ UppercaseLetter : UnicodeCategory # 0
1646
+ LowercaseLetter : UnicodeCategory # 1
1647
+ TitlecaseLetter : UnicodeCategory # 2
1648
+ ModifierLetter : UnicodeCategory # 3
1649
+ OtherLetter : UnicodeCategory # 4
1650
+ NonSpacingMark : UnicodeCategory # 5
1651
+ SpacingCombiningMark : UnicodeCategory # 6
1652
+ EnclosingMark : UnicodeCategory # 7
1653
+ DecimalDigitNumber : UnicodeCategory # 8
1654
+ LetterNumber : UnicodeCategory # 9
1655
+ OtherNumber : UnicodeCategory # 10
1656
+ SpaceSeparator : UnicodeCategory # 11
1657
+ LineSeparator : UnicodeCategory # 12
1658
+ ParagraphSeparator : UnicodeCategory # 13
1659
+ Control : UnicodeCategory # 14
1660
+ Format : UnicodeCategory # 15
1661
+ Surrogate : UnicodeCategory # 16
1662
+ PrivateUse : UnicodeCategory # 17
1663
+ ConnectorPunctuation : UnicodeCategory # 18
1664
+ DashPunctuation : UnicodeCategory # 19
1665
+ OpenPunctuation : UnicodeCategory # 20
1666
+ ClosePunctuation : UnicodeCategory # 21
1667
+ InitialQuotePunctuation : UnicodeCategory # 22
1668
+ FinalQuotePunctuation : UnicodeCategory # 23
1669
+ OtherPunctuation : UnicodeCategory # 24
1670
+ MathSymbol : UnicodeCategory # 25
1671
+ CurrencySymbol : UnicodeCategory # 26
1672
+ ModifierSymbol : UnicodeCategory # 27
1673
+ OtherSymbol : UnicodeCategory # 28
1674
+ OtherNotAssigned : UnicodeCategory # 29
1675
+