@sitevision/api 1.0.19 → 1.1.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (299) hide show
  1. package/common/router/index.d.ts +1 -1
  2. package/hidden/javax/jcr/Binary/index.d.ts +86 -0
  3. package/hidden/javax/jcr/Credentials/index.d.ts +11 -0
  4. package/hidden/javax/jcr/ImportUUIDBehavior/index.d.ts +11 -0
  5. package/hidden/javax/jcr/Item/index.d.ts +353 -0
  6. package/hidden/javax/jcr/ItemVisitor/index.d.ts +41 -0
  7. package/hidden/javax/jcr/NamespaceRegistry/index.d.ts +100 -0
  8. package/hidden/javax/jcr/Node/index.d.ts +2808 -0
  9. package/hidden/javax/jcr/NodeIterator/index.d.ts +18 -0
  10. package/hidden/javax/jcr/Property/index.d.ts +801 -0
  11. package/hidden/javax/jcr/PropertyIterator/index.d.ts +17 -0
  12. package/hidden/javax/jcr/RangeIterator/index.d.ts +75 -0
  13. package/hidden/javax/jcr/Repository/index.d.ts +318 -0
  14. package/hidden/javax/jcr/RepositoryFactory/index.d.ts +90 -0
  15. package/hidden/javax/jcr/Value/index.d.ts +190 -0
  16. package/hidden/javax/jcr/ValueFactory/index.d.ts +179 -0
  17. package/hidden/javax/jcr/Workspace/index.d.ts +1061 -0
  18. package/hidden/javax/jcr/lock/Lock/index.d.ts +142 -0
  19. package/hidden/javax/jcr/lock/LockManager/index.d.ts +217 -0
  20. package/hidden/javax/jcr/nodetype/ItemDefinition/index.d.ts +219 -0
  21. package/hidden/javax/jcr/nodetype/NodeDefinition/index.d.ts +158 -0
  22. package/hidden/javax/jcr/nodetype/NodeDefinitionTemplate/index.d.ts +74 -0
  23. package/hidden/javax/jcr/nodetype/NodeType/index.d.ts +349 -0
  24. package/hidden/javax/jcr/nodetype/NodeTypeDefinition/index.d.ts +248 -0
  25. package/hidden/javax/jcr/nodetype/NodeTypeIterator/index.d.ts +16 -0
  26. package/hidden/javax/jcr/nodetype/NodeTypeManager/index.d.ts +218 -0
  27. package/hidden/javax/jcr/nodetype/NodeTypeTemplate/index.d.ts +98 -0
  28. package/hidden/javax/jcr/nodetype/PropertyDefinition/index.d.ts +536 -0
  29. package/hidden/javax/jcr/nodetype/PropertyDefinitionTemplate/index.d.ts +97 -0
  30. package/hidden/javax/jcr/observation/Event/index.d.ts +133 -0
  31. package/hidden/javax/jcr/observation/EventIterator/index.d.ts +20 -0
  32. package/hidden/javax/jcr/observation/EventJournal/index.d.ts +22 -0
  33. package/hidden/javax/jcr/observation/EventListener/index.d.ts +23 -0
  34. package/hidden/javax/jcr/observation/EventListenerIterator/index.d.ts +20 -0
  35. package/hidden/javax/jcr/observation/ObservationManager/index.d.ts +227 -0
  36. package/hidden/javax/jcr/query/Query/index.d.ts +201 -0
  37. package/hidden/javax/jcr/query/QueryManager/index.d.ts +73 -0
  38. package/hidden/javax/jcr/query/QueryResult/index.d.ts +51 -0
  39. package/hidden/javax/jcr/query/Row/index.d.ts +159 -0
  40. package/hidden/javax/jcr/query/RowIterator/index.d.ts +20 -0
  41. package/hidden/javax/jcr/query/qom/And/index.d.ts +26 -0
  42. package/hidden/javax/jcr/query/qom/BindVariableValue/index.d.ts +15 -0
  43. package/hidden/javax/jcr/query/qom/ChildNode/index.d.ts +27 -0
  44. package/hidden/javax/jcr/query/qom/ChildNodeJoinCondition/index.d.ts +27 -0
  45. package/hidden/javax/jcr/query/qom/Column/index.d.ts +39 -0
  46. package/hidden/javax/jcr/query/qom/Comparison/index.d.ts +82 -0
  47. package/hidden/javax/jcr/query/qom/Constraint/index.d.ts +13 -0
  48. package/hidden/javax/jcr/query/qom/DescendantNode/index.d.ts +31 -0
  49. package/hidden/javax/jcr/query/qom/DescendantNodeJoinCondition/index.d.ts +29 -0
  50. package/hidden/javax/jcr/query/qom/DynamicOperand/index.d.ts +9 -0
  51. package/hidden/javax/jcr/query/qom/EquiJoinCondition/index.d.ts +41 -0
  52. package/hidden/javax/jcr/query/qom/FullTextSearch/index.d.ts +89 -0
  53. package/hidden/javax/jcr/query/qom/FullTextSearchScore/index.d.ts +24 -0
  54. package/hidden/javax/jcr/query/qom/Join/index.d.ts +36 -0
  55. package/hidden/javax/jcr/query/qom/JoinCondition/index.d.ts +9 -0
  56. package/hidden/javax/jcr/query/qom/Length/index.d.ts +24 -0
  57. package/hidden/javax/jcr/query/qom/Literal/index.d.ts +18 -0
  58. package/hidden/javax/jcr/query/qom/LowerCase/index.d.ts +26 -0
  59. package/hidden/javax/jcr/query/qom/NodeLocalName/index.d.ts +16 -0
  60. package/hidden/javax/jcr/query/qom/NodeName/index.d.ts +16 -0
  61. package/hidden/javax/jcr/query/qom/Not/index.d.ts +20 -0
  62. package/hidden/javax/jcr/query/qom/Operand/index.d.ts +9 -0
  63. package/hidden/javax/jcr/query/qom/Or/index.d.ts +30 -0
  64. package/hidden/javax/jcr/query/qom/Ordering/index.d.ts +53 -0
  65. package/hidden/javax/jcr/query/qom/PropertyExistence/index.d.ts +24 -0
  66. package/hidden/javax/jcr/query/qom/PropertyValue/index.d.ts +25 -0
  67. package/hidden/javax/jcr/query/qom/QueryObjectModel/index.d.ts +64 -0
  68. package/hidden/javax/jcr/query/qom/QueryObjectModelConstants/index.d.ts +9 -0
  69. package/hidden/javax/jcr/query/qom/QueryObjectModelFactory/index.d.ts +638 -0
  70. package/hidden/javax/jcr/query/qom/SameNode/index.d.ts +27 -0
  71. package/hidden/javax/jcr/query/qom/SameNodeJoinCondition/index.d.ts +36 -0
  72. package/hidden/javax/jcr/query/qom/Selector/index.d.ts +35 -0
  73. package/hidden/javax/jcr/query/qom/Source/index.d.ts +9 -0
  74. package/hidden/javax/jcr/query/qom/StaticOperand/index.d.ts +10 -0
  75. package/hidden/javax/jcr/query/qom/UpperCase/index.d.ts +26 -0
  76. package/hidden/javax/jcr/retention/Hold/index.d.ts +34 -0
  77. package/hidden/javax/jcr/retention/RetentionManager/index.d.ts +189 -0
  78. package/hidden/javax/jcr/retention/RetentionPolicy/index.d.ts +21 -0
  79. package/hidden/javax/jcr/security/AccessControlEntry/index.d.ts +24 -0
  80. package/hidden/javax/jcr/security/AccessControlList/index.d.ts +91 -0
  81. package/hidden/javax/jcr/security/AccessControlManager/index.d.ts +297 -0
  82. package/hidden/javax/jcr/security/AccessControlPolicy/index.d.ts +11 -0
  83. package/hidden/javax/jcr/security/AccessControlPolicyIterator/index.d.ts +20 -0
  84. package/hidden/javax/jcr/security/NamedAccessControlPolicy/index.d.ts +22 -0
  85. package/hidden/javax/jcr/security/Privilege/index.d.ts +117 -0
  86. package/hidden/javax/jcr/version/Version/index.d.ts +121 -0
  87. package/hidden/javax/jcr/version/VersionHistory/index.d.ts +307 -0
  88. package/hidden/javax/jcr/version/VersionIterator/index.d.ts +20 -0
  89. package/hidden/javax/jcr/version/VersionManager/index.d.ts +1082 -0
  90. package/hidden/senselogic/sitevision/api/base/Builder/index.d.ts +102 -0
  91. package/hidden/senselogic/sitevision/api/base/Filter/index.d.ts +25 -0
  92. package/hidden/senselogic/sitevision/api/base/FilterSplit/index.d.ts +50 -0
  93. package/hidden/senselogic/sitevision/api/base/Loadable/index.d.ts +15 -0
  94. package/hidden/senselogic/sitevision/api/base/Resolver/index.d.ts +31 -0
  95. package/hidden/senselogic/sitevision/api/base/Wrapper/index.d.ts +24 -0
  96. package/hidden/senselogic/sitevision/api/collaboration/CollaborationGroupWrapper/index.d.ts +417 -0
  97. package/hidden/senselogic/sitevision/api/format/NumericFormatter/index.d.ts +80 -0
  98. package/hidden/senselogic/sitevision/api/format/NumericFormatterBuilder/index.d.ts +100 -0
  99. package/hidden/senselogic/sitevision/api/i18n/Currency/index.d.ts +120 -0
  100. package/hidden/senselogic/sitevision/api/link/CustomLinkProcessor/index.d.ts +45 -0
  101. package/hidden/senselogic/sitevision/api/link/CustomLinkRenderData/index.d.ts +65 -0
  102. package/hidden/senselogic/sitevision/api/mail/Mail/index.d.ts +32 -0
  103. package/hidden/senselogic/sitevision/api/message/MessageTextLinker/index.d.ts +15 -0
  104. package/hidden/senselogic/sitevision/api/metadata/value/LinkValue/index.d.ts +23 -0
  105. package/hidden/senselogic/sitevision/api/metadata/value/RelatedValue/index.d.ts +23 -0
  106. package/hidden/senselogic/sitevision/api/property/VersionedPropertyUtil/index.d.ts +642 -0
  107. package/hidden/senselogic/sitevision/api/render/BuddyIconRenderer/BuddyIconInfo/index.d.ts +51 -0
  108. package/hidden/senselogic/sitevision/api/render/ImageScaler/index.d.ts +58 -0
  109. package/hidden/senselogic/sitevision/api/render/TextModuleRenderer/index.d.ts +301 -0
  110. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/ArticleUtilConstants/index.d.ts +85 -0
  111. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/ExceptionSuppressingProxyConstants/index.d.ts +31 -0
  112. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/IndexingUtilConstants/index.d.ts +31 -0
  113. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/LinkPageUtilConstants/index.d.ts +67 -0
  114. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/MathInstanceConstants/index.d.ts +25 -0
  115. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/MimeTypeUtilConstants/index.d.ts +19 -0
  116. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/NodeTypeUtilConstants/index.d.ts +1243 -0
  117. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/OutputUtilConstants/index.d.ts +31 -0
  118. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PageUtilConstants/index.d.ts +91 -0
  119. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PortletContextUtilConstants/index.d.ts +27 -0
  120. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/PortletUtilConstants/index.d.ts +19 -0
  121. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/QueryStringUtilConstants/index.d.ts +19 -0
  122. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/SearchHitConstants/index.d.ts +25 -0
  123. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/SearchResultConstants/index.d.ts +37 -0
  124. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/VersionUtilConstants/index.d.ts +25 -0
  125. package/hidden/senselogic/sitevision/api/render/velocity/VelocityAccess/index.d.ts +8 -0
  126. package/hidden/senselogic/sitevision/api/render/velocity/VelocityContext/index.d.ts +50 -0
  127. package/hidden/senselogic/sitevision/api/render/velocity/VelocityEvaluator/index.d.ts +89 -0
  128. package/hidden/senselogic/sitevision/api/script/RequesterChainable/index.d.ts +119 -0
  129. package/hidden/senselogic/sitevision/api/script/app/RestAppInvoker/index.d.ts +272 -0
  130. package/hidden/senselogic/sitevision/api/script/factory/TypedArgument/index.d.ts +43 -0
  131. package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingCollection/index.d.ts +94 -0
  132. package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingIterator/index.d.ts +117 -0
  133. package/hidden/senselogic/sitevision/api/script/proxy/ExceptionSuppressingProxy/index.d.ts +90 -0
  134. package/hidden/senselogic/sitevision/api/search/SearchFieldUtil/index.d.ts +89 -0
  135. package/hidden/senselogic/sitevision/api/search/SearchHighlighter/index.d.ts +45 -0
  136. package/hidden/senselogic/sitevision/api/search/SearchHit/index.d.ts +1176 -0
  137. package/hidden/senselogic/sitevision/api/search/SearchResult/index.d.ts +414 -0
  138. package/hidden/senselogic/sitevision/api/search/facet/SearchFacetField/index.d.ts +27 -0
  139. package/hidden/senselogic/sitevision/api/search/facet/SearchFacetValue/index.d.ts +61 -0
  140. package/hidden/senselogic/sitevision/api/search/searcher/Searcher/index.d.ts +277 -0
  141. package/hidden/senselogic/sitevision/api/search/searcher/component/Filter/index.d.ts +25 -0
  142. package/hidden/senselogic/sitevision/api/search/searcher/component/Highlight/index.d.ts +29 -0
  143. package/hidden/senselogic/sitevision/api/search/searcher/component/Monitor/index.d.ts +25 -0
  144. package/hidden/senselogic/sitevision/api/search/searcher/component/Parser/index.d.ts +35 -0
  145. package/hidden/senselogic/sitevision/api/search/searcher/component/Sort/index.d.ts +25 -0
  146. package/hidden/senselogic/sitevision/api/search/searcher/component/SpellCheck/index.d.ts +29 -0
  147. package/hidden/senselogic/sitevision/api/search/sort/CustomSort/index.d.ts +82 -0
  148. package/hidden/senselogic/sitevision/api/search/suggestion/SearchSuggestion/index.d.ts +21 -0
  149. package/hidden/senselogic/sitevision/api/security/DirectoryAttributes/index.d.ts +70 -0
  150. package/hidden/senselogic/sitevision/api/security/MessageDigester/index.d.ts +50 -0
  151. package/hidden/senselogic/sitevision/api/security/RoleAssignment/index.d.ts +72 -0
  152. package/hidden/senselogic/sitevision/api/security/RoleMatcher/index.d.ts +29 -0
  153. package/hidden/senselogic/sitevision/api/security/SecretStore/index.d.ts +55 -0
  154. package/hidden/senselogic/sitevision/api/security/UserUtil/index.d.ts +80 -0
  155. package/hidden/senselogic/sitevision/api/security/jaas/filter/AuthenticationFilter/index.d.ts +36 -0
  156. package/hidden/senselogic/sitevision/api/security/jaas/filter/AuthenticationFilterChain/index.d.ts +32 -0
  157. package/hidden/senselogic/sitevision/api/user/UserIdentityWrapper/index.d.ts +599 -0
  158. package/hidden/senselogic/sitevision/api/webresource/LinkTarget/index.d.ts +20 -0
  159. package/hidden/senselogic/sitevision/api/xml/XmlElement/index.d.ts +55 -0
  160. package/hidden/senselogic/sitevision/api/xml/XmlElementHandler/index.d.ts +17 -0
  161. package/package.json +2 -4
  162. package/server/AliasUtil/index.d.ts +25 -0
  163. package/server/AliasUtil/index.js +10 -0
  164. package/server/ArchiveUtil/index.d.ts +65 -11
  165. package/server/ArraysInstance/index.d.ts +1846 -0
  166. package/server/ArticleUtil/index.d.ts +381 -69
  167. package/server/AuthenticationUtil/index.d.ts +106 -0
  168. package/server/BookmarkUtil/index.d.ts +36 -28
  169. package/server/BuddyIconRenderer/index.d.ts +240 -0
  170. package/server/ClientUtil/index.d.ts +18 -4
  171. package/server/CollaborationFactory/index.d.ts +42 -25
  172. package/server/CollaborationGroupFolderUtil/index.d.ts +40 -29
  173. package/server/CollaborationGroupTemplateUtil/index.d.ts +71 -39
  174. package/server/CollaborationGroupUtil/index.d.ts +128 -55
  175. package/server/CollectionsInstance/index.d.ts +738 -0
  176. package/server/ColorUtil/index.d.ts +22 -17
  177. package/server/CompoundAndFilterBuilder/index.d.ts +60 -0
  178. package/server/CompoundComparatorBuilder/index.d.ts +63 -0
  179. package/server/CompoundOrFilterBuilder/index.d.ts +59 -0
  180. package/server/ContentNodeUtil/index.d.ts +76 -0
  181. package/server/CurrencyFactory/index.d.ts +135 -0
  182. package/server/DateUtil/index.d.ts +154 -77
  183. package/server/DecorationUtil/index.d.ts +23 -0
  184. package/server/DeviceUtil/index.d.ts +36 -0
  185. package/server/DirectoryUtil/index.d.ts +107 -47
  186. package/server/DocTypeUtil/index.d.ts +149 -0
  187. package/server/EndecUtil/index.d.ts +537 -91
  188. package/server/ExtendedDismaxParserBuilder/index.d.ts +311 -0
  189. package/server/FileIconRenderer/index.d.ts +346 -0
  190. package/server/FileUtil/index.d.ts +462 -0
  191. package/server/FilterBuilder/index.d.ts +120 -0
  192. package/server/FolderUtil/index.d.ts +161 -0
  193. package/server/FontUtil/index.d.ts +49 -0
  194. package/server/FormatterBuilderFactory/index.d.ts +129 -0
  195. package/server/HighlightBuilder/index.d.ts +194 -0
  196. package/server/IconUtil/index.d.ts +37 -0
  197. package/server/ImageLinkRenderer/index.d.ts +134 -0
  198. package/server/ImageRenderer/index.d.ts +613 -231
  199. package/server/ImageUtil/index.d.ts +430 -0
  200. package/server/IndexUtil/index.d.ts +71 -0
  201. package/server/IndexingUtil/index.d.ts +92 -0
  202. package/server/InstanceCreatorUtil/index.d.ts +661 -0
  203. package/server/InstanceTypeUtil/index.d.ts +202 -0
  204. package/server/JwtUtil/index.d.ts +217 -0
  205. package/server/LandingPageUtil/index.d.ts +67 -50
  206. package/server/LinkPageUtil/index.d.ts +468 -0
  207. package/server/LinkRenderer/index.d.ts +1157 -0
  208. package/server/LinkTargetBuilder/index.d.ts +146 -0
  209. package/server/LinkValueBuilder/index.d.ts +129 -52
  210. package/server/ListWrapper/index.d.ts +172 -0
  211. package/server/LocaleUtil/index.d.ts +695 -61
  212. package/server/LogUtil/index.d.ts +118 -77
  213. package/server/MailBuilder/index.d.ts +238 -0
  214. package/server/MailUtil/index.d.ts +98 -0
  215. package/server/MathInstance/index.d.ts +681 -0
  216. package/server/MessageDigesterFactory/index.d.ts +49 -0
  217. package/server/MetadataDefinitionUtil/index.d.ts +118 -0
  218. package/server/MetadataUtil/index.d.ts +524 -79
  219. package/server/MimeTypeUtil/index.d.ts +316 -0
  220. package/server/MonitorBuilder/index.d.ts +51 -0
  221. package/server/NodeComparatorUtil/index.d.ts +397 -0
  222. package/server/NodeFactoryUtil/index.d.ts +32 -0
  223. package/server/NodeFilterUtil/index.d.ts +924 -0
  224. package/server/NodeIteratorUtil/index.d.ts +322 -72
  225. package/server/NodeResolverUtil/index.d.ts +767 -0
  226. package/server/NodeTreeUtil/index.d.ts +339 -63
  227. package/server/NodeTypeUtil/index.d.ts +391 -197
  228. package/server/OfflineVersionPropertyUtil/index.d.ts +30 -0
  229. package/server/OnlineVersionPropertyUtil/index.d.ts +30 -0
  230. package/server/OutputUtil/index.d.ts +641 -0
  231. package/server/PageUtil/index.d.ts +330 -0
  232. package/server/PermissionUtil/index.d.ts +650 -0
  233. package/server/PortletContextUtil/index.d.ts +118 -37
  234. package/server/PortletContextUtil/index.js +1 -0
  235. package/server/PortletUtil/index.d.ts +40 -0
  236. package/server/PrincipalUtil/index.d.ts +51 -0
  237. package/server/Properties/index.d.ts +185 -38
  238. package/server/PropertyUtil/index.d.ts +2330 -406
  239. package/server/PublishingUtil/index.d.ts +385 -49
  240. package/server/QueryStringUtil/index.d.ts +737 -0
  241. package/server/RedirectUtil/index.d.ts +98 -0
  242. package/server/RelatedValueBuilder/index.d.ts +81 -39
  243. package/server/Requester/index.d.ts +441 -65
  244. package/server/ResourceLocatorUtil/index.d.ts +483 -227
  245. package/server/RestApi/index.d.ts +208 -23
  246. package/server/RestAppInvokerFactory/index.d.ts +73 -0
  247. package/server/RoleAssignmentBuilder/index.d.ts +60 -0
  248. package/server/RoleMatcherBuilder/index.d.ts +59 -0
  249. package/server/RoleUtil/index.d.ts +57 -0
  250. package/server/ScriptUtil/index.d.ts +625 -143
  251. package/server/SearchFactory/index.d.ts +133 -0
  252. package/server/SearchUtil/index.d.ts +164 -0
  253. package/server/SearcherBuilder/index.d.ts +260 -0
  254. package/server/Session/index.d.ts +1758 -0
  255. package/server/SimpleUserUtil/index.d.ts +39 -30
  256. package/server/SiteCookieUtil/index.d.ts +78 -53
  257. package/server/SortBuilder/index.d.ts +111 -0
  258. package/server/SpellCheckBuilder/index.d.ts +68 -0
  259. package/server/StandardParserBuilder/index.d.ts +112 -0
  260. package/server/StructureUtil/index.d.ts +167 -0
  261. package/server/SubscriberUtil/index.d.ts +122 -0
  262. package/server/SubscriptionUtil/index.d.ts +197 -0
  263. package/server/SystemUserUtil/index.d.ts +201 -98
  264. package/server/TagUtil/index.d.ts +193 -0
  265. package/server/TemplateUtil/index.d.ts +217 -0
  266. package/server/TemporaryFileNodeBuilder/index.d.ts +63 -0
  267. package/server/TemporaryNodeBuilder/index.d.ts +241 -0
  268. package/server/TextModuleRendererBuilder/index.d.ts +68 -0
  269. package/server/TimestampUtil/index.d.ts +98 -82
  270. package/server/TranslationUtil/index.d.ts +175 -0
  271. package/server/TrashcanUtil/index.d.ts +193 -24
  272. package/server/UserDataUtil/index.d.ts +167 -85
  273. package/server/UserFactory/index.d.ts +45 -30
  274. package/server/UserFieldRenderer/index.d.ts +258 -0
  275. package/server/UserIdentityUtil/index.d.ts +61 -29
  276. package/server/UserUtil/index.d.ts +69 -28
  277. package/server/Utils/index.d.ts +870 -12
  278. package/server/VelocityRenderer/index.d.ts +248 -0
  279. package/server/VersionUtil/index.d.ts +15 -12
  280. package/server/WebContentUtil/index.d.ts +644 -0
  281. package/server/WebResourceFactory/index.d.ts +66 -0
  282. package/server/XSLTUtil/index.d.ts +49 -10
  283. package/server/XmlParserUtil/index.d.ts +82 -81
  284. package/builtins/Binary/index.d.ts +0 -3
  285. package/builtins/Calendar/index.d.ts +0 -3
  286. package/builtins/Collection/index.d.ts +0 -3
  287. package/builtins/Date/index.d.ts +0 -3
  288. package/builtins/InputStream/index.d.ts +0 -3
  289. package/builtins/Instant/index.d.ts +0 -3
  290. package/builtins/List/index.d.ts +0 -3
  291. package/builtins/LocalDateTime/index.d.ts +0 -3
  292. package/builtins/Locale/index.d.ts +0 -3
  293. package/builtins/Node/index.d.ts +0 -3
  294. package/builtins/NodeIterator/index.d.ts +0 -27
  295. package/builtins/Property/index.d.ts +0 -3
  296. package/builtins/Serializable/index.d.ts +0 -3
  297. package/builtins/Set/index.d.ts +0 -3
  298. package/builtins/Throwable/index.d.ts +0 -3
  299. package/builtins/byte/index.d.ts +0 -3
@@ -0,0 +1,1846 @@
1
+ /**
2
+ * Sorts the specified array of longs into ascending numerical order.
3
+ * @param anArray the array to be sorted
4
+ */
5
+ export function sort(anArray: number): void;
6
+
7
+ /**
8
+ * Sorts the specified range of the specified array of longs into
9
+ * ascending numerical order.
10
+ * @param anArray the array to be sorted
11
+ * @param aFromIndex the index of the first element (inclusive) to be sorted
12
+ * @param aToIndex the index of the last element (exclusive) to be sorted
13
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
14
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
15
+ */
16
+ export function sort(
17
+ anArray: number,
18
+ aFromIndex: number,
19
+ aToIndex: number
20
+ ): void;
21
+
22
+ /**
23
+ * Sorts the specified array of ints into ascending numerical order.
24
+ * @param anArray the array to be sorted
25
+ */
26
+ export function sort(anArray: number): void;
27
+
28
+ /**
29
+ * Sorts the specified range of the specified array of ints into ascending numerical order.
30
+ * @param anArray the array to be sorted
31
+ * @param aFromIndex the index of the first element (inclusive) to be sorted
32
+ * @param aToIndex the index of the last element (exclusive) to be sorted
33
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
34
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
35
+ */
36
+ export function sort(
37
+ anArray: number,
38
+ aFromIndex: number,
39
+ aToIndex: number
40
+ ): void;
41
+
42
+ /**
43
+ * Sorts the specified array of shorts into ascending numerical order.
44
+ * @param anArray the array to be sorted
45
+ */
46
+ export function sort(anArray: number): void;
47
+
48
+ /**
49
+ * Sorts the specified range of the specified array of shorts into ascending numerical order.
50
+ * @param anArray the array to be sorted
51
+ * @param aFromIndex the index of the first element (inclusive) to be sorted
52
+ * @param aToIndex the index of the last element (exclusive) to be sorted
53
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
54
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
55
+ */
56
+ export function sort(
57
+ anArray: number,
58
+ aFromIndex: number,
59
+ aToIndex: number
60
+ ): void;
61
+
62
+ /**
63
+ * Sorts the specified array of chars into ascending numerical order.
64
+ * @param anArray the array to be sorted
65
+ */
66
+ export function sort(anArray: string): void;
67
+
68
+ /**
69
+ * Sorts the specified range of the specified array of chars into ascending numerical order.
70
+ * @param anArray the array to be sorted
71
+ * @param aFromIndex the index of the first element (inclusive) to be sorted
72
+ * @param aToIndex the index of the last element (exclusive) to be sorted
73
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
74
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
75
+ */
76
+ export function sort(
77
+ anArray: string,
78
+ aFromIndex: number,
79
+ aToIndex: number
80
+ ): void;
81
+
82
+ /**
83
+ * Sorts the specified array of bytes into ascending numerical order.
84
+ * @param anArray the array to be sorted
85
+ */
86
+ export function sort(anArray: unknown): void;
87
+
88
+ /**
89
+ * Sorts the specified range of the specified array of bytes into ascending numerical order.
90
+ * @param anArray the array to be sorted
91
+ * @param aFromIndex the index of the first element (inclusive) to be sorted
92
+ * @param aToIndex the index of the last element (exclusive) to be sorted
93
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
94
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
95
+ */
96
+ export function sort(
97
+ anArray: unknown,
98
+ aFromIndex: number,
99
+ aToIndex: number
100
+ ): void;
101
+
102
+ /**
103
+ * Sorts the specified array of doubles into ascending numerical order.
104
+ * @param anArray the array to be sorted
105
+ */
106
+ export function sort(anArray: number): void;
107
+
108
+ /**
109
+ * Sorts the specified range of the specified array of doubles into ascending numerical order.
110
+ * @param anArray the array to be sorted
111
+ * @param aFromIndex the index of the first element (inclusive) to be sorted
112
+ * @param aToIndex the index of the last element (exclusive) to be sorted
113
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
114
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
115
+ */
116
+ export function sort(
117
+ anArray: number,
118
+ aFromIndex: number,
119
+ aToIndex: number
120
+ ): void;
121
+
122
+ /**
123
+ * Sorts the specified array of floats into ascending numerical order.
124
+ * @param anArray the array to be sorted
125
+ */
126
+ export function sort(anArray: number): void;
127
+
128
+ /**
129
+ * Sorts the specified range of the specified array of floats into ascending numerical order.
130
+ * @param anArray the array to be sorted
131
+ * @param aFromIndex the index of the first element (inclusive) to be sorted
132
+ * @param aToIndex the index of the last element (exclusive) to be sorted
133
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
134
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
135
+ */
136
+ export function sort(
137
+ anArray: number,
138
+ aFromIndex: number,
139
+ aToIndex: number
140
+ ): void;
141
+
142
+ /**
143
+ * Sorts the specified array of objects into ascending order, according to the <code>Comparable</code> natural ordering of its elements.
144
+ * @param anArray the array to be sorted
145
+ * @throws ClassCastException if the array contains elements that are not <i>mutually comparable</i> (for example, strings and integers).
146
+ */
147
+ export function sort(anArray: unknown): void;
148
+
149
+ /**
150
+ * Sorts the specified range of the specified array of objects into ascending order, according to the <code>Comparable</code>
151
+ * natural ordering of its elements.
152
+ * @param anArray the array to be sorted
153
+ * @param aFromIndex the index of the first element (inclusive) to be sorted
154
+ * @param aToIndex the index of the last element (exclusive) to be sorted
155
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
156
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
157
+ * @throws ClassCastException if the array contains elements that are not <i>mutually comparable</i> (for example, strings and integers).
158
+ */
159
+ export function sort(
160
+ anArray: unknown,
161
+ aFromIndex: number,
162
+ aToIndex: number
163
+ ): void;
164
+
165
+ /**
166
+ * Sorts the specified array of objects according to the order induced by the specified comparator.
167
+ * @param <T> the class of the objects to be sorted
168
+ * @param anArray the array to be sorted
169
+ * @param aComparator the comparator to determine the order of the array. A <tt>null</tt> value indicates that the elements' Comparable natural ordering should be used.
170
+ * @throws ClassCastException if the array contains elements that are not <i>mutually comparable</i> using the specified comparator.
171
+ */
172
+ export function sort(anArray: unknown, aComparator: unknown): void;
173
+
174
+ /**
175
+ * Sorts the specified range of the specified array of objects according to the order induced by the specified comparator.
176
+ * @param <T> the class of the objects to be sorted
177
+ * @param anArray the array to be sorted
178
+ * @param aFromIndex the index of the first element (inclusive) to be sorted
179
+ * @param aToIndex the index of the last element (exclusive) to be sorted
180
+ * @param aComparator the comparator to determine the order of the array. A <tt>null</tt> value indicates that the elements' Comparable natural ordering should be used.
181
+ * @throws ClassCastException if the array contains elements that are not <i>mutually comparable</i> using the specified comparator.
182
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
183
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
184
+ */
185
+ export function sort(
186
+ anArray: unknown,
187
+ aFromIndex: number,
188
+ aToIndex: number,
189
+ aComparator: unknown
190
+ ): void;
191
+
192
+ /**
193
+ * Searches the specified array of longs for the specified value using the binary search algorithm.
194
+ * @param anArray the array to be searched
195
+ * @param aKey the value to be searched for
196
+ * @return index of the search key, if it is contained in the array; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element greater than the key, or <tt>anArray.length</tt> if all elements in the array are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
197
+ */
198
+ export function binarySearch(anArray: number, aKey: number): number;
199
+
200
+ /**
201
+ * Searches a range of the specified array of longs for the specified value using the binary search algorithm.
202
+ * @param anArray the array to be searched
203
+ * @param aFromIndex the index of the first element (inclusive) to be searched
204
+ * @param aToIndex the index of the last element (exclusive) to be searched
205
+ * @param aKey the value to be searched for
206
+ * @return index of the search key, if it is contained in the array within the specified range; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element in the range greater than the key, or <tt>aToIndex</tt> if all elements in the range are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
207
+ * @throws IllegalArgumentException if {@code aFromIndex > aToIndex}
208
+ * @throws ArrayIndexOutOfBoundsException if {@code aFromIndex < 0 or aToIndex > anArray.length}
209
+ */
210
+ export function binarySearch(
211
+ anArray: number,
212
+ aFromIndex: number,
213
+ aToIndex: number,
214
+ aKey: number
215
+ ): number;
216
+
217
+ /**
218
+ * Searches the specified array of ints for the specified value using the binary search algorithm.
219
+ * @param anArray the array to be searched
220
+ * @param aKey the value to be searched for
221
+ * @return index of the search key, if it is contained in the array; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element greater than the key, or <tt>anArray.length</tt> if all elements in the array are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
222
+ */
223
+ export function binarySearch(anArray: number, aKey: number): number;
224
+
225
+ /**
226
+ * Searches a range of the specified array of ints for the specified value using the binary search algorithm.
227
+ * @param anArray the array to be searched
228
+ * @param aFromIndex the index of the first element (inclusive) to be searched
229
+ * @param aToIndex the index of the last element (exclusive) to be searched
230
+ * @param aKey the value to be searched for
231
+ * @return index of the search key, if it is contained in the array within the specified range; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element in the range greater than the key, or <tt>aToIndex</tt> if all elements in the range are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
232
+ * @throws IllegalArgumentException if {@code aFromIndex > aToIndex}
233
+ * @throws ArrayIndexOutOfBoundsException if {@code aFromIndex < 0 or aToIndex > anArray.length}
234
+ */
235
+ export function binarySearch(
236
+ anArray: number,
237
+ aFromIndex: number,
238
+ aToIndex: number,
239
+ aKey: number
240
+ ): number;
241
+
242
+ /**
243
+ * Searches the specified array of shorts for the specified value using the binary search algorithm.
244
+ * @param anArray the array to be searched
245
+ * @param aKey the value to be searched for
246
+ * @return index of the search key, if it is contained in the array; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element greater than the key, or <tt>anArray.length</tt> if all elements in the array are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
247
+ */
248
+ export function binarySearch(anArray: number, aKey: number): number;
249
+
250
+ /**
251
+ * Searches a range of the specified array of shorts for the specified value using the binary search algorithm.
252
+ * @param anArray the array to be searched
253
+ * @param aFromIndex the index of the first element (inclusive) to be searched
254
+ * @param aToIndex the index of the last element (exclusive) to be searched
255
+ * @param aKey the value to be searched for
256
+ * @return index of the search key, if it is contained in the array within the specified range; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element in the range greater than the key, or <tt>aToIndex</tt> if all elements in the range are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
257
+ * @throws IllegalArgumentException if {@code aFromIndex > aToIndex}
258
+ * @throws ArrayIndexOutOfBoundsException if {@code aFromIndex < 0 or aToIndex > anArray.length}
259
+ */
260
+ export function binarySearch(
261
+ anArray: number,
262
+ aFromIndex: number,
263
+ aToIndex: number,
264
+ aKey: number
265
+ ): number;
266
+
267
+ /**
268
+ * Searches the specified array of chars for the specified value using the binary search algorithm.
269
+ * @param anArray the array to be searched
270
+ * @param aKey the value to be searched for
271
+ * @return index of the search key, if it is contained in the array; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element greater than the key, or <tt>anArray.length</tt> if all elements in the array are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
272
+ */
273
+ export function binarySearch(anArray: string, aKey: string): number;
274
+
275
+ /**
276
+ * Searches a range of the specified array of chars for the specified value using the binary search algorithm.
277
+ * @param anArray the array to be searched
278
+ * @param aFromIndex the index of the first element (inclusive) to be searched
279
+ * @param aToIndex the index of the last element (exclusive) to be searched
280
+ * @param aKey the value to be searched for
281
+ * @return index of the search key, if it is contained in the array within the specified range; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element in the range greater than the key, or <tt>aToIndex</tt> if all elements in the range are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
282
+ * @throws IllegalArgumentException if {@code aFromIndex > aToIndex}
283
+ * @throws ArrayIndexOutOfBoundsException if {@code aFromIndex < 0 or aToIndex > anArray.length}
284
+ */
285
+ export function binarySearch(
286
+ anArray: string,
287
+ aFromIndex: number,
288
+ aToIndex: number,
289
+ aKey: string
290
+ ): number;
291
+
292
+ /**
293
+ * Searches the specified array of bytes for the specified value using the binary search algorithm.
294
+ * @param anArray the array to be searched
295
+ * @param aKey the value to be searched for
296
+ * @return index of the search key, if it is contained in the array; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element greater than the key, or <tt>anArray.length</tt> if all elements in the array are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
297
+ */
298
+ export function binarySearch(anArray: unknown, aKey: unknown): number;
299
+
300
+ /**
301
+ * Searches a range of the specified array of bytes for the specified value using the binary search algorithm.
302
+ * @param anArray the array to be searched
303
+ * @param aFromIndex the index of the first element (inclusive) to be searched
304
+ * @param aToIndex the index of the last element (exclusive) to be searched
305
+ * @param aKey the value to be searched for
306
+ * @return index of the search key, if it is contained in the array within the specified range; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element in the range greater than the key, or <tt>aToIndex</tt> if all elements in the range are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
307
+ * @throws IllegalArgumentException if {@code aFromIndex > aToIndex}
308
+ * @throws ArrayIndexOutOfBoundsException if {@code aFromIndex < 0 or aToIndex > anArray.length}
309
+ */
310
+ export function binarySearch(
311
+ anArray: unknown,
312
+ aFromIndex: number,
313
+ aToIndex: number,
314
+ aKey: unknown
315
+ ): number;
316
+
317
+ /**
318
+ * Searches the specified array of doubles for the specified value using the binary search algorithm.
319
+ * @param anArray the array to be searched
320
+ * @param aKey the value to be searched for
321
+ * @return index of the search key, if it is contained in the array; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element greater than the key, or <tt>anArray.length</tt> if all elements in the array are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
322
+ */
323
+ export function binarySearch(anArray: number, aKey: number): number;
324
+
325
+ /**
326
+ * Searches a range of the specified array of doubles for the specified value using the binary search algorithm.
327
+ * @param anArray the array to be searched
328
+ * @param aFromIndex the index of the first element (inclusive) to be searched
329
+ * @param aToIndex the index of the last element (exclusive) to be searched
330
+ * @param aKey the value to be searched for
331
+ * @return index of the search key, if it is contained in the array within the specified range; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element in the range greater than the key, or <tt>aToIndex</tt> if all elements in the range are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
332
+ * @throws IllegalArgumentException if {@code aFromIndex > aToIndex}
333
+ * @throws ArrayIndexOutOfBoundsException if {@code aFromIndex < 0 or aToIndex > anArray.length}
334
+ */
335
+ export function binarySearch(
336
+ anArray: number,
337
+ aFromIndex: number,
338
+ aToIndex: number,
339
+ aKey: number
340
+ ): number;
341
+
342
+ /**
343
+ * Searches the specified array of floats for the specified value using the binary search algorithm.
344
+ * @param anArray the array to be searched
345
+ * @param aKey the value to be searched for
346
+ * @return index of the search key, if it is contained in the array; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element greater than the key, or <tt>anArray.length</tt> if all elements in the array are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
347
+ */
348
+ export function binarySearch(anArray: number, aKey: number): number;
349
+
350
+ /**
351
+ * Searches a range of the specified array of floats for the specified value using the binary search algorithm.
352
+ * @param anArray the array to be searched
353
+ * @param aFromIndex the index of the first element (inclusive) to be searched
354
+ * @param aToIndex the index of the last element (exclusive) to be searched
355
+ * @param aKey the value to be searched for
356
+ * @return index of the search key, if it is contained in the array within the specified range; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element in the range greater than the key, or <tt>aToIndex</tt> if all elements in the range are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
357
+ * @throws IllegalArgumentException if {@code aFromIndex > aToIndex}
358
+ * @throws ArrayIndexOutOfBoundsException if {@code aFromIndex < 0 or aToIndex > anArray.length}
359
+ */
360
+ export function binarySearch(
361
+ anArray: number,
362
+ aFromIndex: number,
363
+ aToIndex: number,
364
+ aKey: number
365
+ ): number;
366
+
367
+ /**
368
+ * Searches the specified array for the specified object using the binary search algorithm.
369
+ * @param anArray the array to be searched
370
+ * @param aKey the value to be searched for
371
+ * @return index of the search key, if it is contained in the array; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element greater than the key, or <tt>anArray.length</tt> if all elements in the array are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
372
+ * @throws ClassCastException if the search key is not comparable to the elements of the array.
373
+ */
374
+ export function binarySearch(anArray: unknown, aKey: unknown): number;
375
+
376
+ /**
377
+ * Searches a range of the specified array for the specified object using the binary search algorithm.
378
+ * @param anArray the array to be searched
379
+ * @param aFromIndex the index of the first element (inclusive) to be searched
380
+ * @param aToIndex the index of the last element (exclusive) to be searched
381
+ * @param aKey the value to be searched for
382
+ * @return index of the search key, if it is contained in the array within the specified range; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element in the range greater than the key, or <tt>aToIndex</tt> if all elements in the range are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
383
+ * @throws ClassCastException if the search key is not comparable to the elements of the array within the specified range.
384
+ * @throws IllegalArgumentException if {@code aFromIndex > aToIndex}
385
+ * @throws ArrayIndexOutOfBoundsException if {@code aFromIndex < 0 or aToIndex > anArray.length}
386
+ */
387
+ export function binarySearch(
388
+ anArray: unknown,
389
+ aFromIndex: number,
390
+ aToIndex: number,
391
+ aKey: unknown
392
+ ): number;
393
+
394
+ /**
395
+ * Searches the specified array for the specified object using the binary search algorithm.
396
+ * @param <T> the class of the objects to be searched
397
+ * @param anArray the array to be searched
398
+ * @param aKey the value to be searched for
399
+ * @param aComparator the comparator by which the array is ordered. A <tt>null</tt> value indicates that the elements' Comparable natural ordering should be used.
400
+ * @return index of the search key, if it is contained in the array; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element greater than the key, or <tt>anArray.length</tt> if all elements in the array are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
401
+ * @throws ClassCastException if the array contains elements that are not <i>mutually comparable</i> using the specified comparator, or the search key is not comparable to the elements of the array using this comparator.
402
+ */
403
+ export function binarySearch(
404
+ anArray: unknown,
405
+ aKey: unknown,
406
+ aComparator: unknown
407
+ ): number;
408
+
409
+ /**
410
+ * Searches a range of the specified array for the specified object using the binary search algorithm.
411
+ * @param <T> the class of the objects to be searched
412
+ * @param anArray the array to be searched
413
+ * @param aFromIndex the index of the first element (inclusive) to be searched
414
+ * @param aToIndex the index of the last element (exclusive) to be searched
415
+ * @param aKey the value to be searched for
416
+ * @param aComparator the comparator by which the array is ordered. A <tt>null</tt> value indicates that the elements' Comparable natural ordering should be used.
417
+ * @return index of the search key, if it is contained in the array within the specified range; otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The <i>insertion point</i> is defined as the point at which the key would be inserted into the array: the index of the first element in the range greater than the key, or <tt>aToIndex</tt> if all elements in the range are less than the specified key. Note that this guarantees that the return value will be &gt;= 0 if and only if the key is found.
418
+ * @throws ClassCastException if the range contains elements that are not <i>mutually comparable</i> using the specified comparator, or the search key is not comparable to the elements in the range using this comparator.
419
+ * @throws IllegalArgumentException if {@code aFromIndex > aToIndex}
420
+ * @throws ArrayIndexOutOfBoundsException if {@code aFromIndex < 0 or aToIndex > anArray.length}
421
+ */
422
+ export function binarySearch(
423
+ anArray: unknown,
424
+ aFromIndex: number,
425
+ aToIndex: number,
426
+ aKey: unknown,
427
+ aComparator: unknown
428
+ ): number;
429
+
430
+ /**
431
+ * Returns <tt>true</tt> if the two specified arrays of longs are <i>equal</i> to one another.
432
+ * @param anArray one array to be tested for equality
433
+ * @param anAnotherArray the other array to be tested for equality
434
+ * @return <tt>true</tt> if the two arrays are equal
435
+ */
436
+ export function equals(anArray: number, anAnotherArray: number): boolean;
437
+
438
+ /**
439
+ * Returns <tt>true</tt> if the two specified arrays of ints are <i>equal</i> to one another.
440
+ * @param anArray one array to be tested for equality
441
+ * @param anAnotherArray the other array to be tested for equality
442
+ * @return <tt>true</tt> if the two arrays are equal
443
+ */
444
+ export function equals(anArray: number, anAnotherArray: number): boolean;
445
+
446
+ /**
447
+ * Returns <tt>true</tt> if the two specified arrays of shorts are <i>equal</i> to one another.
448
+ * @param anArray one array to be tested for equality
449
+ * @param anAnotherArray the other array to be tested for equality
450
+ * @return <tt>true</tt> if the two arrays are equal
451
+ */
452
+ export function equals(anArray: number, anAnotherArray: number): boolean;
453
+
454
+ /**
455
+ * Returns <tt>true</tt> if the two specified arrays of chars are <i>equal</i> to one another.
456
+ * @param anArray one array to be tested for equality
457
+ * @param anAnotherArray the other array to be tested for equality
458
+ * @return <tt>true</tt> if the two arrays are equal
459
+ */
460
+ export function equals(anArray: string, anAnotherArray: string): boolean;
461
+
462
+ /**
463
+ * Returns <tt>true</tt> if the two specified arrays of bytes are <i>equal</i> to one another.
464
+ * @param anArray one array to be tested for equality
465
+ * @param anAnotherArray the other array to be tested for equality
466
+ * @return <tt>true</tt> if the two arrays are equal
467
+ */
468
+ export function equals(anArray: unknown, anAnotherArray: unknown): boolean;
469
+
470
+ /**
471
+ * Returns <tt>true</tt> if the two specified arrays of booleans are <i>equal</i> to one another.
472
+ * @param anArray one array to be tested for equality
473
+ * @param anAnotherArray the other array to be tested for equality
474
+ * @return <tt>true</tt> if the two arrays are equal
475
+ */
476
+ export function equals(anArray: boolean, anAnotherArray: boolean): boolean;
477
+
478
+ /**
479
+ * Returns <tt>true</tt> if the two specified arrays of doubles are <i>equal</i> to one another.
480
+ * @param anArray one array to be tested for equality
481
+ * @param anAnotherArray the other array to be tested for equality
482
+ * @return <tt>true</tt> if the two arrays are equal
483
+ */
484
+ export function equals(anArray: number, anAnotherArray: number): boolean;
485
+
486
+ /**
487
+ * Returns <tt>true</tt> if the two specified arrays of floats are <i>equal</i> to one another.
488
+ * @param anArray one array to be tested for equality
489
+ * @param anAnotherArray the other array to be tested for equality
490
+ * @return <tt>true</tt> if the two arrays are equal
491
+ */
492
+ export function equals(anArray: number, anAnotherArray: number): boolean;
493
+
494
+ /**
495
+ * Returns <tt>true</tt> if the two specified arrays of Objects are <i>equal</i> to one another.
496
+ * @param anArray one array to be tested for equality
497
+ * @param anAnotherArray the other array to be tested for equality
498
+ * @return <tt>true</tt> if the two arrays are equal
499
+ */
500
+ export function equals(anArray: unknown, anAnotherArray: unknown): boolean;
501
+
502
+ /**
503
+ * Assigns the specified long value to each element of the specified array of longs.
504
+ * @param anArray the array to be filled
505
+ * @param aValue the value to be stored in all elements of the array
506
+ */
507
+ export function fill(anArray: number, aValue: number): void;
508
+
509
+ /**
510
+ * Assigns the specified long value to each element of the specified range of the specified array of longs.
511
+ * @param anArray the array to be filled
512
+ * @param aFromIndex the index of the first element (inclusive) to be filled with the specified value
513
+ * @param aToIndex the index of the last element (exclusive) to be filled with the specified value
514
+ * @param aValue the value to be stored in all elements of the array
515
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
516
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
517
+ */
518
+ export function fill(
519
+ anArray: number,
520
+ aFromIndex: number,
521
+ aToIndex: number,
522
+ aValue: number
523
+ ): void;
524
+
525
+ /**
526
+ * Assigns the specified int value to each element of the specified array of ints.
527
+ * @param anArray the array to be filled
528
+ * @param aValue the value to be stored in all elements of the array
529
+ */
530
+ export function fill(anArray: number, aValue: number): void;
531
+
532
+ /**
533
+ * Assigns the specified int value to each element of the specified range of the specified array of ints.
534
+ * @param anArray the array to be filled
535
+ * @param aFromIndex the index of the first element (inclusive) to be filled with the specified value
536
+ * @param aToIndex the index of the last element (exclusive) to be filled with the specified value
537
+ * @param aValue the value to be stored in all elements of the array
538
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
539
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
540
+ */
541
+ export function fill(
542
+ anArray: number,
543
+ aFromIndex: number,
544
+ aToIndex: number,
545
+ aValue: number
546
+ ): void;
547
+
548
+ /**
549
+ * Assigns the specified short value to each element of the specified array of shorts.
550
+ * @param anArray the array to be filled
551
+ * @param aValue the value to be stored in all elements of the array
552
+ */
553
+ export function fill(anArray: number, aValue: number): void;
554
+
555
+ /**
556
+ * Assigns the specified short value to each element of the specified range of the specified array of shorts.
557
+ * @param anArray the array to be filled
558
+ * @param aFromIndex the index of the first element (inclusive) to be filled with the specified value
559
+ * @param aToIndex the index of the last element (exclusive) to be filled with the specified value
560
+ * @param aValue the value to be stored in all elements of the array
561
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
562
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
563
+ */
564
+ export function fill(
565
+ anArray: number,
566
+ aFromIndex: number,
567
+ aToIndex: number,
568
+ aValue: number
569
+ ): void;
570
+
571
+ /**
572
+ * Assigns the specified char value to each element of the specified array of chars.
573
+ * @param anArray the array to be filled
574
+ * @param aValue the value to be stored in all elements of the array
575
+ */
576
+ export function fill(anArray: string, aValue: string): void;
577
+
578
+ /**
579
+ * Assigns the specified char value to each element of the specified range of the specified array of chars.
580
+ * @param anArray the array to be filled
581
+ * @param aFromIndex the index of the first element (inclusive) to be filled with the specified value
582
+ * @param aToIndex the index of the last element (exclusive) to be filled with the specified value
583
+ * @param aValue the value to be stored in all elements of the array
584
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
585
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
586
+ */
587
+ export function fill(
588
+ anArray: string,
589
+ aFromIndex: number,
590
+ aToIndex: number,
591
+ aValue: string
592
+ ): void;
593
+
594
+ /**
595
+ * Assigns the specified byte value to each element of the specified array of bytes.
596
+ * @param anArray the array to be filled
597
+ * @param aValue the value to be stored in all elements of the array
598
+ */
599
+ export function fill(anArray: unknown, aValue: unknown): void;
600
+
601
+ /**
602
+ * Assigns the specified byte value to each element of the specified range of the specified array of bytes.
603
+ * @param anArray the array to be filled
604
+ * @param aFromIndex the index of the first element (inclusive) to be filled with the specified value
605
+ * @param aToIndex the index of the last element (exclusive) to be filled with the specified value
606
+ * @param aValue the value to be stored in all elements of the array
607
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
608
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
609
+ */
610
+ export function fill(
611
+ anArray: unknown,
612
+ aFromIndex: number,
613
+ aToIndex: number,
614
+ aValue: unknown
615
+ ): void;
616
+
617
+ /**
618
+ * Assigns the specified boolean value to each element of the specified array of booleans.
619
+ * @param anArray the array to be filled
620
+ * @param aValue the value to be stored in all elements of the array
621
+ */
622
+ export function fill(anArray: boolean, aValue: boolean): void;
623
+
624
+ /**
625
+ * Assigns the specified boolean value to each element of the specified
626
+ * range of the specified array of booleans.
627
+ * @param anArray the array to be filled
628
+ * @param aFromIndex the index of the first element (inclusive) to be filled with the specified value
629
+ * @param aToIndex the index of the last element (exclusive) to be filled with the specified value
630
+ * @param aValue the value to be stored in all elements of the array
631
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
632
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
633
+ */
634
+ export function fill(
635
+ anArray: boolean,
636
+ aFromIndex: number,
637
+ aToIndex: number,
638
+ aValue: boolean
639
+ ): void;
640
+
641
+ /**
642
+ * Assigns the specified double value to each element of the specified array of doubles.
643
+ * @param anArray the array to be filled
644
+ * @param aValue the value to be stored in all elements of the array
645
+ */
646
+ export function fill(anArray: number, aValue: number): void;
647
+
648
+ /**
649
+ * Assigns the specified double value to each element of the specified range of the specified array of doubles.
650
+ * @param anArray the array to be filled
651
+ * @param aFromIndex the index of the first element (inclusive) to be filled with the specified value
652
+ * @param aToIndex the index of the last element (exclusive) to be filled with the specified value
653
+ * @param aValue the value to be stored in all elements of the array
654
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
655
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
656
+ */
657
+ export function fill(
658
+ anArray: number,
659
+ aFromIndex: number,
660
+ aToIndex: number,
661
+ aValue: number
662
+ ): void;
663
+
664
+ /**
665
+ * Assigns the specified float value to each element of the specified array of floats.
666
+ * @param anArray the array to be filled
667
+ * @param aValue the value to be stored in all elements of the array
668
+ */
669
+ export function fill(anArray: number, aValue: number): void;
670
+
671
+ /**
672
+ * Assigns the specified float value to each element of the specified range of the specified array of floats.
673
+ * @param anArray the array to be filled
674
+ * @param aFromIndex the index of the first element (inclusive) to be filled with the specified value
675
+ * @param aToIndex the index of the last element (exclusive) to be filled with the specified value
676
+ * @param aValue the value to be stored in all elements of the array
677
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
678
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
679
+ */
680
+ export function fill(
681
+ anArray: number,
682
+ aFromIndex: number,
683
+ aToIndex: number,
684
+ aValue: number
685
+ ): void;
686
+
687
+ /**
688
+ * Assigns the specified Object reference to each element of the specified array of Objects.
689
+ * @param anArray the array to be filled
690
+ * @param aValue the value to be stored in all elements of the array
691
+ * @throws ArrayStoreException if the specified value is not of a runtime type that can be stored in the specified array
692
+ */
693
+ export function fill(anArray: unknown, aValue: unknown): void;
694
+
695
+ /**
696
+ * Assigns the specified Object reference to each element of the specified range of the specified array of Objects.
697
+ * @param anArray the array to be filled
698
+ * @param aFromIndex the index of the first element (inclusive) to be filled with the specified value
699
+ * @param aToIndex the index of the last element (exclusive) to be filled with the specified value
700
+ * @param aValue the value to be stored in all elements of the array
701
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
702
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aToIndex &gt; anArray.length</tt>
703
+ * @throws ArrayStoreException if the specified value is not of a runtime type that can be stored in the specified array
704
+ */
705
+ export function fill(
706
+ anArray: unknown,
707
+ aFromIndex: number,
708
+ aToIndex: number,
709
+ aValue: unknown
710
+ ): void;
711
+
712
+ /**
713
+ * Copies the specified array, truncating or padding with nulls (if necessary) so the copy has the specified length.
714
+ * @param <T> the class of the objects in the array
715
+ * @param anArray the array to be copied
716
+ * @param aNewLength the length of the copy to be returned
717
+ * @return a copy of the original array, truncated or padded with nulls to obtain the specified length
718
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
719
+ * @throws NullPointerException if <tt>anArray</tt> is null
720
+ */
721
+ export function copyOf(anArray: unknown, aNewLength: number): unknown;
722
+
723
+ /**
724
+ * Copies the specified array, truncating or padding with nulls (if necessary)
725
+ * so the copy has the specified length.
726
+ * @param <U> the class of the objects in the original array
727
+ * @param <T> the class of the objects in the returned array
728
+ * @param anArray the array to be copied
729
+ * @param aNewLength the length of the copy to be returned
730
+ * @param aNewType the class of the copy to be returned
731
+ * @return a copy of the original array, truncated or padded with nulls to obtain the specified length
732
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
733
+ * @throws NullPointerException if <tt>anArray</tt> is null
734
+ * @throws ArrayStoreException if an element copied from <tt>anArray</tt> is not of a runtime type that can be stored in an array of class <tt>aNewType</tt>
735
+ */
736
+ export function copyOf(
737
+ anArray: unknown,
738
+ aNewLength: number,
739
+ aNewType: unknown
740
+ ): unknown;
741
+
742
+ /**
743
+ * Copies the specified array, truncating or padding with zeros (if necessary)
744
+ * so the copy has the specified length.
745
+ * @param anArray the array to be copied
746
+ * @param aNewLength the length of the copy to be returned
747
+ * @return a copy of the original array, truncated or padded with zeros to obtain the specified length
748
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
749
+ * @throws NullPointerException if <tt>anArray</tt> is null
750
+ */
751
+ export function copyOf(anArray: unknown, aNewLength: number): unknown;
752
+
753
+ /**
754
+ * Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
755
+ * @param anArray the array to be copied
756
+ * @param aNewLength the length of the copy to be returned
757
+ * @return a copy of the original array, truncated or padded with zeros to obtain the specified length
758
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
759
+ * @throws NullPointerException if <tt>anArray</tt> is null
760
+ */
761
+ export function copyOf(anArray: number, aNewLength: number): number;
762
+
763
+ /**
764
+ * Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
765
+ * @param anArray the array to be copied
766
+ * @param aNewLength the length of the copy to be returned
767
+ * @return a copy of the original array, truncated or padded with zeros to obtain the specified length
768
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
769
+ * @throws NullPointerException if <tt>anArray</tt> is null
770
+ */
771
+ export function copyOf(anArray: number, aNewLength: number): number;
772
+
773
+ /**
774
+ * Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
775
+ * @param anArray the array to be copied
776
+ * @param aNewLength the length of the copy to be returned
777
+ * @return a copy of the original array, truncated or padded with zeros to obtain the specified length
778
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
779
+ * @throws NullPointerException if <tt>anArray</tt> is null
780
+ */
781
+ export function copyOf(anArray: number, aNewLength: number): number;
782
+
783
+ /**
784
+ * Copies the specified array, truncating or padding with null characters (if necessary) so the copy has the specified length.
785
+ * @param anArray the array to be copied
786
+ * @param aNewLength the length of the copy to be returned
787
+ * @return a copy of the original array, truncated or padded with null characters to obtain the specified length
788
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
789
+ * @throws NullPointerException if <tt>anArray</tt> is null
790
+ */
791
+ export function copyOf(anArray: string, aNewLength: number): string;
792
+
793
+ /**
794
+ * Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
795
+ * @param anArray the array to be copied
796
+ * @param aNewLength the length of the copy to be returned
797
+ * @return a copy of the original array, truncated or padded with zeros to obtain the specified length
798
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
799
+ * @throws NullPointerException if <tt>anArray</tt> is null
800
+ */
801
+ export function copyOf(anArray: number, aNewLength: number): number;
802
+
803
+ /**
804
+ * Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.
805
+ * @param anArray the array to be copied
806
+ * @param aNewLength the length of the copy to be returned
807
+ * @return a copy of the original array, truncated or padded with zeros to obtain the specified length
808
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
809
+ * @throws NullPointerException if <tt>anArray</tt> is null
810
+ */
811
+ export function copyOf(anArray: number, aNewLength: number): number;
812
+
813
+ /**
814
+ * Copies the specified array, truncating or padding with <tt>false</tt> (if necessary) so the copy has the specified length.
815
+ * @param anArray the array to be copied
816
+ * @param aNewLength the length of the copy to be returned
817
+ * @return a copy of the original array, truncated or padded with false elements to obtain the specified length
818
+ * @throws NegativeArraySizeException if <tt>aNewLength</tt> is negative
819
+ * @throws NullPointerException if <tt>anArray</tt> is null
820
+ */
821
+ export function copyOf(anArray: boolean, aNewLength: number): boolean;
822
+
823
+ /**
824
+ * Copies the specified range of the specified array into a new array.
825
+ * @param <T> the class of the objects in the array
826
+ * @param anArray the array from which a range is to be copied
827
+ * @param aFromIndex the initial index of the range to be copied, inclusive
828
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
829
+ * @return a new array containing the specified range from the original array, truncated or padded with nulls to obtain the required length
830
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
831
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
832
+ * @throws NullPointerException if <tt>anArray</tt> is null
833
+ */
834
+ export function copyOfRange(
835
+ anArray: unknown,
836
+ aFromIndex: number,
837
+ aToIndex: number
838
+ ): unknown;
839
+
840
+ /**
841
+ * Copies the specified range of the specified array into a new array.
842
+ * @param <U> the class of the objects in the original array
843
+ * @param <T> the class of the objects in the returned array
844
+ * @param anArray the array from which a range is to be copied
845
+ * @param aFromIndex the initial index of the range to be copied, inclusive
846
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
847
+ * @param aNewType the class of the copy to be returned
848
+ * @return a new array containing the specified range from the original array, truncated or padded with nulls to obtain the required length
849
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
850
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
851
+ * @throws NullPointerException if <tt>anArray</tt> is null
852
+ * @throws ArrayStoreException if an element copied from <tt>anArray</tt> is not of a runtime type that can be stored in an array of class <tt>aNewType</tt>.
853
+ */
854
+ export function copyOfRange(
855
+ anArray: unknown,
856
+ aFromIndex: number,
857
+ aToIndex: number,
858
+ aNewType: unknown
859
+ ): unknown;
860
+
861
+ /**
862
+ * Copies the specified range of the specified array into a new array.
863
+ * @param anArray the array from which a range is to be copied
864
+ * @param aFromIndex the initial index of the range to be copied, inclusive
865
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
866
+ * @return a new array containing the specified range from the original array, truncated or padded with zeros to obtain the required length
867
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
868
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
869
+ * @throws NullPointerException if <tt>anArray</tt> is null
870
+ */
871
+ export function copyOfRange(
872
+ anArray: unknown,
873
+ aFromIndex: number,
874
+ aToIndex: number
875
+ ): unknown;
876
+
877
+ /**
878
+ * Copies the specified range of the specified array into a new array.
879
+ * @param anArray the array from which a range is to be copied
880
+ * @param aFromIndex the initial index of the range to be copied, inclusive
881
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
882
+ * @return a new array containing the specified range from the original array, truncated or padded with zeros to obtain the required length
883
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
884
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
885
+ * @throws NullPointerException if <tt>anArray</tt> is null
886
+ */
887
+ export function copyOfRange(
888
+ anArray: number,
889
+ aFromIndex: number,
890
+ aToIndex: number
891
+ ): number;
892
+
893
+ /**
894
+ * Copies the specified range of the specified array into a new array.
895
+ * @param anArray the array from which a range is to be copied
896
+ * @param aFromIndex the initial index of the range to be copied, inclusive
897
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
898
+ * @return a new array containing the specified range from the original array, truncated or padded with zeros to obtain the required length
899
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
900
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
901
+ * @throws NullPointerException if <tt>anArray</tt> is null
902
+ */
903
+ export function copyOfRange(
904
+ anArray: number,
905
+ aFromIndex: number,
906
+ aToIndex: number
907
+ ): number;
908
+
909
+ /**
910
+ * Copies the specified range of the specified array into a new array.
911
+ * @param anArray the array from which a range is to be copied
912
+ * @param aFromIndex the initial index of the range to be copied, inclusive
913
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
914
+ * @return a new array containing the specified range from the original array, truncated or padded with zeros to obtain the required length
915
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
916
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
917
+ * @throws NullPointerException if <tt>anArray</tt> is null
918
+ */
919
+ export function copyOfRange(
920
+ anArray: number,
921
+ aFromIndex: number,
922
+ aToIndex: number
923
+ ): number;
924
+
925
+ /**
926
+ * Copies the specified range of the specified array into a new array.
927
+ * @param anArray the array from which a range is to be copied
928
+ * @param aFromIndex the initial index of the range to be copied, inclusive
929
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
930
+ * @return a new array containing the specified range from the original array, truncated or padded with null characters to obtain the required length
931
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
932
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
933
+ * @throws NullPointerException if <tt>anArray</tt> is null
934
+ */
935
+ export function copyOfRange(
936
+ anArray: string,
937
+ aFromIndex: number,
938
+ aToIndex: number
939
+ ): string;
940
+
941
+ /**
942
+ * Copies the specified range of the specified array into a new array.
943
+ * @param anArray the array from which a range is to be copied
944
+ * @param aFromIndex the initial index of the range to be copied, inclusive
945
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
946
+ * @return a new array containing the specified range from the original array, truncated or padded with zeros to obtain the required length
947
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
948
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
949
+ * @throws NullPointerException if <tt>anArray</tt> is null
950
+ */
951
+ export function copyOfRange(
952
+ anArray: number,
953
+ aFromIndex: number,
954
+ aToIndex: number
955
+ ): number;
956
+
957
+ /**
958
+ * Copies the specified range of the specified array into a new array.
959
+ * @param anArray the array from which a range is to be copied
960
+ * @param aFromIndex the initial index of the range to be copied, inclusive
961
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
962
+ * @return a new array containing the specified range from the original array, truncated or padded with zeros to obtain the required length
963
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
964
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
965
+ * @throws NullPointerException if <tt>anArray</tt> is null
966
+ */
967
+ export function copyOfRange(
968
+ anArray: number,
969
+ aFromIndex: number,
970
+ aToIndex: number
971
+ ): number;
972
+
973
+ /**
974
+ * Copies the specified range of the specified array into a new array.
975
+ * @param anArray the array from which a range is to be copied
976
+ * @param aFromIndex the initial index of the range to be copied, inclusive
977
+ * @param aToIndex the final index of the range to be copied, exclusive. (This index may lie outside the array.)
978
+ * @return a new array containing the specified range from the original array, truncated or padded with false elements to obtain the required length
979
+ * @throws ArrayIndexOutOfBoundsException if <tt>aFromIndex &lt; 0</tt> or <tt>aFromIndex &gt; anArray.length()</tt>
980
+ * @throws IllegalArgumentException if <tt>aFromIndex &gt; aToIndex</tt>
981
+ * @throws NullPointerException if <tt>anArray</tt> is null
982
+ */
983
+ export function copyOfRange(
984
+ anArray: boolean,
985
+ aFromIndex: number,
986
+ aToIndex: number
987
+ ): boolean;
988
+
989
+ /**
990
+ * Returns a fixed-size list backed by the specified array.
991
+ * @param <T> the class of the objects in the array
992
+ * @param anArray the array by which the list will be backed
993
+ * @return a list view of the specified array
994
+ */
995
+ export function asList(anArray: unknown): unknown[];
996
+
997
+ /**
998
+ * Returns a hash code based on the contents of the specified array.
999
+ * @param anArray the array whose hash value to compute
1000
+ * @return a content-based hash code for <tt>anArray</tt>
1001
+ */
1002
+ export function hashCode(anArray: number): number;
1003
+
1004
+ /**
1005
+ * Returns a hash code based on the contents of the specified array.
1006
+ * @param anArray the array whose hash value to compute
1007
+ * @return a content-based hash code for <tt>anArray</tt>
1008
+ */
1009
+ export function hashCode(anArray: number): number;
1010
+
1011
+ /**
1012
+ * Returns a hash code based on the contents of the specified array.
1013
+ * @param anArray the array whose hash value to compute
1014
+ * @return a content-based hash code for <tt>anArray</tt>
1015
+ */
1016
+ export function hashCode(anArray: number): number;
1017
+
1018
+ /**
1019
+ * Returns a hash code based on the contents of the specified array.
1020
+ * @param anArray the array whose hash value to compute
1021
+ * @return a content-based hash code for <tt>anArray</tt>
1022
+ */
1023
+ export function hashCode(anArray: string): number;
1024
+
1025
+ /**
1026
+ * Returns a hash code based on the contents of the specified array.
1027
+ * @param anArray the array whose hash value to compute
1028
+ * @return a content-based hash code for <tt>anArray</tt>
1029
+ */
1030
+ export function hashCode(anArray: unknown): number;
1031
+
1032
+ /**
1033
+ * Returns a hash code based on the contents of the specified array.
1034
+ * @param anArray the array whose hash value to compute
1035
+ * @return a content-based hash code for <tt>anArray</tt>
1036
+ */
1037
+ export function hashCode(anArray: boolean): number;
1038
+
1039
+ /**
1040
+ * Returns a hash code based on the contents of the specified array.
1041
+ * @param anArray the array whose hash value to compute
1042
+ * @return a content-based hash code for <tt>anArray</tt>
1043
+ */
1044
+ export function hashCode(anArray: number): number;
1045
+
1046
+ /**
1047
+ * Returns a hash code based on the contents of the specified array.
1048
+ * @param anArray the array whose hash value to compute
1049
+ * @return a content-based hash code for <tt>anArray</tt>
1050
+ */
1051
+ export function hashCode(anArray: number): number;
1052
+
1053
+ /**
1054
+ * Returns a hash code based on the contents of the specified array.
1055
+ * @param anArray the array whose content-based hash code to compute
1056
+ * @return a content-based hash code for <tt>anArray</tt>
1057
+ */
1058
+ export function hashCode(anArray: unknown): number;
1059
+
1060
+ /**
1061
+ * Returns a hash code based on the "deep contents" of the specified array.
1062
+ * @param anArray the array whose deep-content-based hash code to compute
1063
+ * @return a deep-content-based hash code for <tt>anArray</tt>
1064
+ */
1065
+ export function deepHashCode(anArray: unknown): number;
1066
+
1067
+ /**
1068
+ * Returns <tt>true</tt> if the two specified arrays are <i>deeply equal</i> to one another.
1069
+ * @param anArray one array to be tested for equality
1070
+ * @param anAnotherArray the other array to be tested for equality
1071
+ * @return <tt>true</tt> if the two arrays are equal
1072
+ */
1073
+ export function deepEquals(anArray: unknown, anAnotherArray: unknown): boolean;
1074
+
1075
+ /**
1076
+ * Returns a string representation of the contents of the specified array.
1077
+ * @param anArray the array whose string representation to return
1078
+ * @return a string representation of <tt>anArray</tt>
1079
+ */
1080
+ export function toString(anArray: number): string;
1081
+
1082
+ /**
1083
+ * Returns a string representation of the contents of the specified array.
1084
+ * @param anArray the array whose string representation to return
1085
+ * @return a string representation of <tt>anArray</tt>
1086
+ */
1087
+ export function toString(anArray: number): string;
1088
+
1089
+ /**
1090
+ * Returns a string representation of the contents of the specified array.
1091
+ * @param anArray the array whose string representation to return
1092
+ * @return a string representation of <tt>anArray</tt>
1093
+ */
1094
+ export function toString(anArray: number): string;
1095
+
1096
+ /**
1097
+ * Returns a string representation of the contents of the specified array.
1098
+ * @param anArray the array whose string representation to return
1099
+ * @return a string representation of <tt>anArray</tt>
1100
+ */
1101
+ export function toString(anArray: string): string;
1102
+
1103
+ /**
1104
+ * Returns a string representation of the contents of the specified array.
1105
+ * @param anArray the array whose string representation to return
1106
+ * @return a string representation of <tt>anArray</tt>
1107
+ */
1108
+ export function toString(anArray: unknown): string;
1109
+
1110
+ /**
1111
+ * Returns a string representation of the contents of the specified array.
1112
+ * @param anArray the array whose string representation to return
1113
+ * @return a string representation of <tt>anArray</tt>
1114
+ */
1115
+ export function toString(anArray: boolean): string;
1116
+
1117
+ /**
1118
+ * Returns a string representation of the contents of the specified array.
1119
+ * @param anArray the array whose string representation to return
1120
+ * @return a string representation of <tt>anArray</tt>
1121
+ */
1122
+ export function toString(anArray: number): string;
1123
+
1124
+ /**
1125
+ * Returns a string representation of the contents of the specified array.
1126
+ * @param anArray the array whose string representation to return
1127
+ * @return a string representation of <tt>anArray</tt>
1128
+ */
1129
+ export function toString(anArray: number): string;
1130
+
1131
+ /**
1132
+ * Returns a string representation of the contents of the specified array.
1133
+ * @param anArray the array whose string representation to return
1134
+ * @return a string representation of <tt>anArray</tt>
1135
+ */
1136
+ export function toString(anArray: unknown): string;
1137
+
1138
+ /**
1139
+ * Returns a string representation of the "deep contents" of the specified array.
1140
+ * @param anArray the array whose string representation to return
1141
+ * @return a string representation of <tt>anArray</tt>
1142
+ */
1143
+ export function deepToString(anArray: unknown): string;
1144
+
1145
+ /**
1146
+ * Sorts the specified array into ascending numerical order.
1147
+ * @param a the array to be sorted
1148
+ * @since Sitevision 4.0
1149
+ * @since Java 1.8
1150
+ */
1151
+ export function parallelSort(a: unknown): void;
1152
+
1153
+ /**
1154
+ * Sorts the specified range of the array into ascending numerical order.
1155
+ * @param a the array to be sorted
1156
+ * @param fromIndex the index of the first element, inclusive, to be sorted
1157
+ * @param toIndex the index of the last element, exclusive, to be sorted
1158
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1159
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > a.length}
1160
+ * @since Sitevision 4.0
1161
+ * @since Java 1.8
1162
+ */
1163
+ export function parallelSort(
1164
+ a: unknown,
1165
+ fromIndex: number,
1166
+ toIndex: number
1167
+ ): void;
1168
+
1169
+ /**
1170
+ * Sorts the specified array into ascending numerical order.
1171
+ * @param a the array to be sorted
1172
+ * @since Sitevision 4.0
1173
+ * @since Java 1.8
1174
+ */
1175
+ export function parallelSort(a: string): void;
1176
+
1177
+ /**
1178
+ * Sorts the specified range of the array into ascending numerical order.
1179
+ * @param a the array to be sorted
1180
+ * @param fromIndex the index of the first element, inclusive, to be sorted
1181
+ * @param toIndex the index of the last element, exclusive, to be sorted
1182
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1183
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > a.length}
1184
+ * @since Sitevision 4.0
1185
+ * @since Java 1.8
1186
+ */
1187
+ export function parallelSort(
1188
+ a: string,
1189
+ fromIndex: number,
1190
+ toIndex: number
1191
+ ): void;
1192
+
1193
+ /**
1194
+ * Sorts the specified array into ascending numerical order.
1195
+ * @param a the array to be sorted
1196
+ * @since Sitevision 4.0
1197
+ * @since Java 1.8
1198
+ */
1199
+ export function parallelSort(a: number): void;
1200
+
1201
+ /**
1202
+ * Sorts the specified range of the array into ascending numerical order.
1203
+ * @param a the array to be sorted
1204
+ * @param fromIndex the index of the first element, inclusive, to be sorted
1205
+ * @param toIndex the index of the last element, exclusive, to be sorted
1206
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1207
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > a.length}
1208
+ * @since Sitevision 4.0
1209
+ * @since Java 1.8
1210
+ */
1211
+ export function parallelSort(
1212
+ a: number,
1213
+ fromIndex: number,
1214
+ toIndex: number
1215
+ ): void;
1216
+
1217
+ /**
1218
+ * Sorts the specified array into ascending numerical order.
1219
+ * @param a the array to be sorted
1220
+ * @since Sitevision 4.0
1221
+ * @since Java 1.8
1222
+ */
1223
+ export function parallelSort(a: number): void;
1224
+
1225
+ /**
1226
+ * Sorts the specified range of the array into ascending numerical order.
1227
+ * @param a the array to be sorted
1228
+ * @param fromIndex the index of the first element, inclusive, to be sorted
1229
+ * @param toIndex the index of the last element, exclusive, to be sorted
1230
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1231
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > a.length}
1232
+ * @since Sitevision 4.0
1233
+ * @since Java 1.8
1234
+ */
1235
+ export function parallelSort(
1236
+ a: number,
1237
+ fromIndex: number,
1238
+ toIndex: number
1239
+ ): void;
1240
+
1241
+ /**
1242
+ * Sorts the specified array into ascending numerical order.
1243
+ * @param a the array to be sorted
1244
+ * @since Sitevision 4.0
1245
+ * @since Java 1.8
1246
+ */
1247
+ export function parallelSort(a: number): void;
1248
+
1249
+ /**
1250
+ * Sorts the specified range of the array into ascending numerical order.
1251
+ * @param a the array to be sorted
1252
+ * @param fromIndex the index of the first element, inclusive, to be sorted
1253
+ * @param toIndex the index of the last element, exclusive, to be sorted
1254
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1255
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > a.length}
1256
+ * @since Sitevision 4.0
1257
+ * @since Java 1.8
1258
+ */
1259
+ export function parallelSort(
1260
+ a: number,
1261
+ fromIndex: number,
1262
+ toIndex: number
1263
+ ): void;
1264
+
1265
+ /**
1266
+ * Sorts the specified array into ascending numerical order.
1267
+ * @param a the array to be sorted
1268
+ * @since Sitevision 4.0
1269
+ * @since Java 1.8
1270
+ */
1271
+ export function parallelSort(a: number): void;
1272
+
1273
+ /**
1274
+ * Sorts the specified range of the array into ascending numerical order.
1275
+ * @param a the array to be sorted
1276
+ * @param fromIndex the index of the first element, inclusive, to be sorted
1277
+ * @param toIndex the index of the last element, exclusive, to be sorted
1278
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1279
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > a.length}
1280
+ * @since Sitevision 4.0
1281
+ * @since Java 1.8
1282
+ */
1283
+ export function parallelSort(
1284
+ a: number,
1285
+ fromIndex: number,
1286
+ toIndex: number
1287
+ ): void;
1288
+
1289
+ /**
1290
+ * Sorts the specified array into ascending numerical order.
1291
+ * @param a the array to be sorted
1292
+ * @since Sitevision 4.0
1293
+ * @since Java 1.8
1294
+ */
1295
+ export function parallelSort(a: number): void;
1296
+
1297
+ /**
1298
+ * Sorts the specified range of the array into ascending numerical order.
1299
+ * @param a the array to be sorted
1300
+ * @param fromIndex the index of the first element, inclusive, to be sorted
1301
+ * @param toIndex the index of the last element, exclusive, to be sorted
1302
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1303
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > a.length}
1304
+ * @since Sitevision 4.0
1305
+ * @since Java 1.8
1306
+ */
1307
+ export function parallelSort(
1308
+ a: number,
1309
+ fromIndex: number,
1310
+ toIndex: number
1311
+ ): void;
1312
+
1313
+ /**
1314
+ * Sorts the specified array of objects into ascending order, according
1315
+ * to the {@linkplain Comparable natural ordering} of its elements.
1316
+ * @param <T> the class of the objects to be sorted
1317
+ * @param a the array to be sorted
1318
+ * @throws ClassCastException if the array contains elements that are not <i>mutually comparable</i> (for example, strings and integers)
1319
+ * @throws IllegalArgumentException (optional) if the natural ordering of the array elements is found to violate the {@link Comparable} contract
1320
+ * @since Sitevision 4.0
1321
+ * @since Java 1.8
1322
+ */
1323
+ export function parallelSort(a: unknown): void;
1324
+
1325
+ /**
1326
+ * Sorts the specified range of the specified array of objects into
1327
+ * ascending order, according to the
1328
+ * {@linkplain Comparable natural ordering} of its elements.
1329
+ * @param <T> the class of the objects to be sorted
1330
+ * @param a the array to be sorted
1331
+ * @param fromIndex the index of the first element (inclusive) to be sorted
1332
+ * @param toIndex the index of the last element (exclusive) to be sorted
1333
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex} or (optional) if the natural ordering of the array elements is found to violate the {@link Comparable} contract
1334
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > a.length}
1335
+ * @throws ClassCastException if the array contains elements that are not <i>mutually comparable</i> (for example, strings and integers).
1336
+ * @since Sitevision 4.0
1337
+ * @since Java 1.8
1338
+ */
1339
+ export function parallelSort(
1340
+ a: unknown,
1341
+ fromIndex: number,
1342
+ toIndex: number
1343
+ ): void;
1344
+
1345
+ /**
1346
+ * Sorts the specified array of objects according to the order induced by
1347
+ * the specified comparator.
1348
+ * @param <T> the class of the objects to be sorted
1349
+ * @param a the array to be sorted
1350
+ * @param cmp the comparator to determine the order of the array. A {@code null} value indicates that the elements' {@linkplain Comparable natural ordering} should be used.
1351
+ * @throws ClassCastException if the array contains elements that are not <i>mutually comparable</i> using the specified comparator
1352
+ * @throws IllegalArgumentException (optional) if the comparator is found to violate the {@link java.util.Comparator} contract
1353
+ * @since Sitevision 4.0
1354
+ * @since Java 1.8
1355
+ */
1356
+ export function parallelSort(a: unknown, cmp: unknown): void;
1357
+
1358
+ /**
1359
+ * Sorts the specified range of the specified array of objects according
1360
+ * to the order induced by the specified comparator.
1361
+ * @param <T> the class of the objects to be sorted
1362
+ * @param a the array to be sorted
1363
+ * @param fromIndex the index of the first element (inclusive) to be sorted
1364
+ * @param toIndex the index of the last element (exclusive) to be sorted
1365
+ * @param cmp the comparator to determine the order of the array. A {@code null} value indicates that the elements' {@linkplain Comparable natural ordering} should be used.
1366
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex} or (optional) if the natural ordering of the array elements is found to violate the {@link Comparable} contract
1367
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > a.length}
1368
+ * @throws ClassCastException if the array contains elements that are not <i>mutually comparable</i> (for example, strings and integers).
1369
+ * @since Sitevision 4.0
1370
+ * @since Java 1.8
1371
+ */
1372
+ export function parallelSort(
1373
+ a: unknown,
1374
+ fromIndex: number,
1375
+ toIndex: number,
1376
+ cmp: unknown
1377
+ ): void;
1378
+
1379
+ /**
1380
+ * Cumulates, in parallel, each element of the given array in place, using the supplied function.
1381
+ * @param <T> the class of the objects in the array
1382
+ * @param array the array, which is modified in-place by this method
1383
+ * @param op a side-effect-free, associative function to perform the cumulation
1384
+ * @throws NullPointerException if the specified array or function is null
1385
+ * @since Sitevision 4.0
1386
+ * @since Java 1.8
1387
+ */
1388
+ export function parallelPrefix(array: unknown, op: unknown): void;
1389
+
1390
+ /**
1391
+ * Performs {@link #parallelPrefix(Object[], BinaryOperator)} for the given subrange of the array.
1392
+ * @param <T> the class of the objects in the array
1393
+ * @param array the array
1394
+ * @param fromIndex the index of the first element, inclusive
1395
+ * @param toIndex the index of the last element, exclusive
1396
+ * @param op a side-effect-free, associative function to perform the cumulation
1397
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1398
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > array.length}
1399
+ * @throws NullPointerException if the specified array or function is null
1400
+ * @since Sitevision 4.0
1401
+ * @since Java 1.8
1402
+ */
1403
+ export function parallelPrefix(
1404
+ array: unknown,
1405
+ fromIndex: number,
1406
+ toIndex: number,
1407
+ op: unknown
1408
+ ): void;
1409
+
1410
+ /**
1411
+ * Cumulates, in parallel, each element of the given array in place, using the supplied function.
1412
+ * @param array the array, which is modified in-place by this method
1413
+ * @param op a side-effect-free, associative function to perform the cumulation
1414
+ * @throws NullPointerException if the specified array or function is null
1415
+ * @since Sitevision 4.0
1416
+ * @since Java 1.8
1417
+ */
1418
+ export function parallelPrefix(array: number, op: unknown): void;
1419
+
1420
+ /**
1421
+ * Performs {@link #parallelPrefix(long[], LongBinaryOperator)} for the given subrange of the array.
1422
+ * @param array the array
1423
+ * @param fromIndex the index of the first element, inclusive
1424
+ * @param toIndex the index of the last element, exclusive
1425
+ * @param op a side-effect-free, associative function to perform the cumulation
1426
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1427
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > array.length}
1428
+ * @throws NullPointerException if the specified array or function is null
1429
+ * @since Sitevision 4.0
1430
+ * @since Java 1.8
1431
+ */
1432
+ export function parallelPrefix(
1433
+ array: number,
1434
+ fromIndex: number,
1435
+ toIndex: number,
1436
+ op: unknown
1437
+ ): void;
1438
+
1439
+ /**
1440
+ * Cumulates, in parallel, each element of the given array in place, using the supplied function.
1441
+ * @param array the array, which is modified in-place by this method
1442
+ * @param op a side-effect-free function to perform the cumulation
1443
+ * @throws NullPointerException if the specified array or function is null
1444
+ * @since Sitevision 4.0
1445
+ * @since Java 1.8
1446
+ */
1447
+ export function parallelPrefix(array: number, op: unknown): void;
1448
+
1449
+ /**
1450
+ * Performs {@link #parallelPrefix(double[], DoubleBinaryOperator)} for the given subrange of the array.
1451
+ * @param array the array
1452
+ * @param fromIndex the index of the first element, inclusive
1453
+ * @param toIndex the index of the last element, exclusive
1454
+ * @param op a side-effect-free, associative function to perform the cumulation
1455
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1456
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > array.length}
1457
+ * @throws NullPointerException if the specified array or function is null
1458
+ * @since Sitevision 4.0
1459
+ * @since Java 1.8
1460
+ */
1461
+ export function parallelPrefix(
1462
+ array: number,
1463
+ fromIndex: number,
1464
+ toIndex: number,
1465
+ op: unknown
1466
+ ): void;
1467
+
1468
+ /**
1469
+ * Cumulates, in parallel, each element of the given array in place, using the supplied function.
1470
+ * @param array the array, which is modified in-place by this method
1471
+ * @param op a side-effect-free, associative function to perform the cumulation
1472
+ * @throws NullPointerException if the specified array or function is null
1473
+ * @since Sitevision 4.0
1474
+ * @since Java 1.8
1475
+ */
1476
+ export function parallelPrefix(array: number, op: unknown): void;
1477
+
1478
+ /**
1479
+ * Performs {@link #parallelPrefix(int[], IntBinaryOperator)} for the given subrange of the array.
1480
+ * @param array the array
1481
+ * @param fromIndex the index of the first element, inclusive
1482
+ * @param toIndex the index of the last element, exclusive
1483
+ * @param op a side-effect-free, associative function to perform the cumulation
1484
+ * @throws IllegalArgumentException if {@code fromIndex > toIndex}
1485
+ * @throws ArrayIndexOutOfBoundsException if {@code fromIndex < 0} or {@code toIndex > array.length}
1486
+ * @throws NullPointerException if the specified array or function is null
1487
+ * @since Sitevision 4.0
1488
+ * @since Java 1.8
1489
+ */
1490
+ export function parallelPrefix(
1491
+ array: number,
1492
+ fromIndex: number,
1493
+ toIndex: number,
1494
+ op: unknown
1495
+ ): void;
1496
+
1497
+ /**
1498
+ * Set all elements of the specified array, using the provided generator function to compute each element.
1499
+ * @param <T> type of elements of the array
1500
+ * @param array array to be initialized
1501
+ * @param generator a function accepting an index and producing the desired value for that position
1502
+ * @throws NullPointerException if the generator is null
1503
+ * @since Sitevision 4.0
1504
+ * @since Java 1.8
1505
+ */
1506
+ export function setAll(array: unknown, generator: unknown): void;
1507
+
1508
+ /**
1509
+ * Set all elements of the specified array, in parallel, using the provided generator function to compute each element.
1510
+ * @param <T> type of elements of the array
1511
+ * @param array array to be initialized
1512
+ * @param generator a function accepting an index and producing the desired value for that position
1513
+ * @throws NullPointerException if the generator is null
1514
+ * @since Sitevision 4.0
1515
+ * @since Java 1.8
1516
+ */
1517
+ export function parallelSetAll(array: unknown, generator: unknown): void;
1518
+
1519
+ /**
1520
+ * Set all elements of the specified array, using the provided generator function to compute each element.
1521
+ * @param array array to be initialized
1522
+ * @param generator a function accepting an index and producing the desired value for that position
1523
+ * @throws NullPointerException if the generator is null
1524
+ * @since Sitevision 4.0
1525
+ * @since Java 1.8
1526
+ */
1527
+ export function setAll(array: number, generator: unknown): void;
1528
+
1529
+ /**
1530
+ * Set all elements of the specified array, in parallel, using the provided generator function to compute each element.
1531
+ * @param array array to be initialized
1532
+ * @param generator a function accepting an index and producing the desired value for that position
1533
+ * @throws NullPointerException if the generator is null
1534
+ * @since Sitevision 4.0
1535
+ * @since Java 1.8
1536
+ */
1537
+ export function parallelSetAll(array: number, generator: unknown): void;
1538
+
1539
+ /**
1540
+ * Set all elements of the specified array, using the provided generator function to compute each element.
1541
+ * @param array array to be initialized
1542
+ * @param generator a function accepting an index and producing the desired value for that position
1543
+ * @throws NullPointerException if the generator is null
1544
+ * @since Sitevision 4.0
1545
+ * @since Java 1.8
1546
+ */
1547
+ export function setAll(array: number, generator: unknown): void;
1548
+
1549
+ /**
1550
+ * Set all elements of the specified array, in parallel, using the provided generator function to compute each element.
1551
+ * @param array array to be initialized
1552
+ * @param generator a function accepting an index and producing the desired value for that position
1553
+ * @throws NullPointerException if the generator is null
1554
+ * @since Sitevision 4.0
1555
+ * @since Java 1.8
1556
+ */
1557
+ export function parallelSetAll(array: number, generator: unknown): void;
1558
+
1559
+ /**
1560
+ * Set all elements of the specified array, using the provided generator function to compute each element.
1561
+ * @param array array to be initialized
1562
+ * @param generator a function accepting an index and producing the desired value for that position
1563
+ * @throws NullPointerException if the generator is null
1564
+ * @since Sitevision 4.0
1565
+ * @since Java 1.8
1566
+ */
1567
+ export function setAll(array: number, generator: unknown): void;
1568
+
1569
+ /**
1570
+ * Set all elements of the specified array, in parallel, using the provided generator function to compute each element.
1571
+ * @param array array to be initialized
1572
+ * @param generator a function accepting an index and producing the desired value for that position
1573
+ * @throws NullPointerException if the generator is null
1574
+ * @since Sitevision 4.0
1575
+ * @since Java 1.8
1576
+ */
1577
+ export function parallelSetAll(array: number, generator: unknown): void;
1578
+
1579
+ /**
1580
+ * Returns a Spliterator covering all of the specified array.
1581
+ * @param <T> type of elements
1582
+ * @param array the array, assumed to be unmodified during use
1583
+ * @return a spliterator for the array elements
1584
+ * @since Sitevision 4.0
1585
+ * @since Java 1.8
1586
+ */
1587
+ export function spliterator(array: unknown): unknown;
1588
+
1589
+ /**
1590
+ * Returns a {@link Spliterator} covering the specified range of the specified array.
1591
+ * @param <T> type of elements
1592
+ * @param array the array, assumed to be unmodified during use
1593
+ * @param startInclusive the first index to cover, inclusive
1594
+ * @param endExclusive index immediately past the last index to cover
1595
+ * @return a spliterator for the array elements
1596
+ * @throws ArrayIndexOutOfBoundsException if {@code startInclusive} is negative, {@code endExclusive} is less than {@code startInclusive}, or {@code endExclusive} is greater than the array size
1597
+ * @since Sitevision 4.0
1598
+ * @since Java 1.8
1599
+ */
1600
+ export function spliterator(
1601
+ array: unknown,
1602
+ startInclusive: number,
1603
+ endExclusive: number
1604
+ ): unknown;
1605
+
1606
+ /**
1607
+ * Returns a {@link Spliterator.OfInt} covering all of the specified array.
1608
+ * @param array the array, assumed to be unmodified during use
1609
+ * @return a spliterator for the array elements
1610
+ * @since Sitevision 4.0
1611
+ * @since Java 1.8
1612
+ */
1613
+ export function spliterator(array: number): unknown;
1614
+
1615
+ /**
1616
+ * Returns a {@link Spliterator.OfInt} covering the specified range of the specified array.
1617
+ * @param array the array, assumed to be unmodified during use
1618
+ * @param startInclusive the first index to cover, inclusive
1619
+ * @param endExclusive index immediately past the last index to cover
1620
+ * @return a spliterator for the array elements
1621
+ * @throws ArrayIndexOutOfBoundsException if {@code startInclusive} is negative, {@code endExclusive} is less than {@code startInclusive}, or {@code endExclusive} is greater than the array size
1622
+ * @since Sitevision 4.0
1623
+ * @since Java 1.8
1624
+ */
1625
+ export function spliterator(
1626
+ array: number,
1627
+ startInclusive: number,
1628
+ endExclusive: number
1629
+ ): unknown;
1630
+
1631
+ /**
1632
+ * Returns a {@link Spliterator.OfLong} covering all of the specified array.
1633
+ *
1634
+ * <p>The spliterator reports {@link Spliterator#SIZED},
1635
+ * {@link Spliterator#SUBSIZED}, {@link Spliterator#ORDERED}, and
1636
+ * {@link Spliterator#IMMUTABLE}.
1637
+ * @param array the array, assumed to be unmodified during use
1638
+ * @return the spliterator for the array elements
1639
+ * @since Sitevision 4.0
1640
+ * @since Java 1.8
1641
+ */
1642
+ export function spliterator(array: number): unknown;
1643
+
1644
+ /**
1645
+ * Returns a {@link Spliterator.OfLong} covering the specified range of the specified array.
1646
+ * @param array the array, assumed to be unmodified during use
1647
+ * @param startInclusive the first index to cover, inclusive
1648
+ * @param endExclusive index immediately past the last index to cover
1649
+ * @return a spliterator for the array elements
1650
+ * @throws ArrayIndexOutOfBoundsException if {@code startInclusive} is negative, {@code endExclusive} is less than {@code startInclusive}, or {@code endExclusive} is greater than the array size
1651
+ * @since Sitevision 4.0
1652
+ * @since Java 1.8
1653
+ */
1654
+ export function spliterator(
1655
+ array: number,
1656
+ startInclusive: number,
1657
+ endExclusive: number
1658
+ ): unknown;
1659
+
1660
+ /**
1661
+ * Returns a {@link Spliterator.OfDouble} covering all of the specified array.
1662
+ * @param array the array, assumed to be unmodified during use
1663
+ * @return a spliterator for the array elements
1664
+ * @since Sitevision 4.0
1665
+ * @since Java 1.8
1666
+ */
1667
+ export function spliterator(array: number): unknown;
1668
+
1669
+ /**
1670
+ * Returns a {@link Spliterator.OfDouble} covering the specified range of the specified array.
1671
+ * @param array the array, assumed to be unmodified during use
1672
+ * @param startInclusive the first index to cover, inclusive
1673
+ * @param endExclusive index immediately past the last index to cover
1674
+ * @return a spliterator for the array elements
1675
+ * @throws ArrayIndexOutOfBoundsException if {@code startInclusive} is negative, {@code endExclusive} is less than {@code startInclusive}, or {@code endExclusive} is greater than the array size
1676
+ * @since Sitevision 4.0
1677
+ * @since Java 1.8
1678
+ */
1679
+ export function spliterator(
1680
+ array: number,
1681
+ startInclusive: number,
1682
+ endExclusive: number
1683
+ ): unknown;
1684
+
1685
+ /**
1686
+ * Returns a sequential {@link Stream} with the specified array as its source.
1687
+ * @param <T> The type of the array elements
1688
+ * @param array The array, assumed to be unmodified during use
1689
+ * @return a {@code Stream} for the array
1690
+ * @since Sitevision 4.0
1691
+ * @since Java 1.8
1692
+ */
1693
+ export function stream(array: unknown): unknown;
1694
+
1695
+ /**
1696
+ * Returns a sequential {@link Stream} with the specified range of the specified array as its source.
1697
+ * @param <T> the type of the array elements
1698
+ * @param array the array, assumed to be unmodified during use
1699
+ * @param startInclusive the first index to cover, inclusive
1700
+ * @param endExclusive index immediately past the last index to cover
1701
+ * @return a {@code Stream} for the array range
1702
+ * @throws ArrayIndexOutOfBoundsException if {@code startInclusive} is negative, {@code endExclusive} is less than {@code startInclusive}, or {@code endExclusive} is greater than the array size
1703
+ * @since Sitevision 4.0
1704
+ * @since Java 1.8
1705
+ */
1706
+ export function stream(
1707
+ array: unknown,
1708
+ startInclusive: number,
1709
+ endExclusive: number
1710
+ ): unknown;
1711
+
1712
+ /**
1713
+ * Returns a sequential {@link IntStream} with the specified array as its source.
1714
+ * @param array the array, assumed to be unmodified during use
1715
+ * @return an {@code IntStream} for the array
1716
+ * @since Sitevision 4.0
1717
+ * @since Java 1.8
1718
+ */
1719
+ export function stream(array: number): unknown;
1720
+
1721
+ /**
1722
+ * Returns a sequential {@link IntStream} with the specified range of the specified array as its source.
1723
+ * @param array the array, assumed to be unmodified during use
1724
+ * @param startInclusive the first index to cover, inclusive
1725
+ * @param endExclusive index immediately past the last index to cover
1726
+ * @return an {@code IntStream} for the array range
1727
+ * @throws ArrayIndexOutOfBoundsException if {@code startInclusive} is negative, {@code endExclusive} is less than {@code startInclusive}, or {@code endExclusive} is greater than the array size
1728
+ * @since Sitevision 4.0
1729
+ * @since Java 1.8
1730
+ */
1731
+ export function stream(
1732
+ array: number,
1733
+ startInclusive: number,
1734
+ endExclusive: number
1735
+ ): unknown;
1736
+
1737
+ /**
1738
+ * Returns a sequential {@link LongStream} with the specified array as its source.
1739
+ * @param array the array, assumed to be unmodified during use
1740
+ * @return a {@code LongStream} for the array
1741
+ * @since Sitevision 4.0
1742
+ * @since Java 1.8
1743
+ */
1744
+ export function stream(array: number): unknown;
1745
+
1746
+ /**
1747
+ * Returns a sequential {@link LongStream} with the specified range of the specified array as its source.
1748
+ * @param array the array, assumed to be unmodified during use
1749
+ * @param startInclusive the first index to cover, inclusive
1750
+ * @param endExclusive index immediately past the last index to cover
1751
+ * @return a {@code LongStream} for the array range
1752
+ * @throws ArrayIndexOutOfBoundsException if {@code startInclusive} is negative, {@code endExclusive} is less than {@code startInclusive}, or {@code endExclusive} is greater than the array size
1753
+ * @since Sitevision 4.0
1754
+ * @since Java 1.8
1755
+ */
1756
+ export function stream(
1757
+ array: number,
1758
+ startInclusive: number,
1759
+ endExclusive: number
1760
+ ): unknown;
1761
+
1762
+ /**
1763
+ * Returns a sequential {@link DoubleStream} with the specified array as its source.
1764
+ * @param array the array, assumed to be unmodified during use
1765
+ * @return a {@code DoubleStream} for the array
1766
+ * @since Sitevision 4.0
1767
+ * @since Java 1.8
1768
+ */
1769
+ export function stream(array: number): unknown;
1770
+
1771
+ /**
1772
+ * Returns a sequential {@link DoubleStream} with the specified range of the specified array as its source.
1773
+ * @param array the array, assumed to be unmodified during use
1774
+ * @param startInclusive the first index to cover, inclusive
1775
+ * @param endExclusive index immediately past the last index to cover
1776
+ * @return a {@code DoubleStream} for the array range
1777
+ * @throws ArrayIndexOutOfBoundsException if {@code startInclusive} is negative, {@code endExclusive} is less than {@code startInclusive}, or {@code endExclusive} is greater than the array size
1778
+ * @since Sitevision 4.0
1779
+ * @since Java 1.8
1780
+ */
1781
+ export function stream(
1782
+ array: number,
1783
+ startInclusive: number,
1784
+ endExclusive: number
1785
+ ): unknown;
1786
+
1787
+ /**
1788
+ * Instance wrapper for the <code>java.util.Arrays</code> class that delegates all method calls to the corresponding <code>Arrays</code> method.
1789
+ *
1790
+ * <p>
1791
+ * <em>
1792
+ * Note! Method documentations in this interface are only excerpts. For full documentation, see official <code>java.util.Arrays</code> Javadoc.
1793
+ * </em>
1794
+ * </p>
1795
+ *
1796
+ * <p>
1797
+ * <em>
1798
+ * Tip! You would typically use {@link InstanceCreatorUtil} to create array instances.
1799
+ * </em>
1800
+ * </p>
1801
+ *
1802
+ * <p>
1803
+ * An instance of the Sitevision class implementing this interface can be obtained via {@link InstanceCreatorUtil#getArraysInstance()}.
1804
+ * See {@link InstanceCreatorUtil} for how to obtain an instance of the <code>InstanceCreatorUtil</code> interface.
1805
+ * </p>Sorts the specified array of longs into ascending numerical order.Sorts the specified range of the specified array of longs into
1806
+ * ascending numerical order.Sorts the specified array of ints into ascending numerical order.Sorts the specified range of the specified array of ints into ascending numerical order.Sorts the specified array of shorts into ascending numerical order.Sorts the specified range of the specified array of shorts into ascending numerical order.Sorts the specified array of chars into ascending numerical order.Sorts the specified range of the specified array of chars into ascending numerical order.Sorts the specified array of bytes into ascending numerical order.Sorts the specified range of the specified array of bytes into ascending numerical order.Sorts the specified array of doubles into ascending numerical order.Sorts the specified range of the specified array of doubles into ascending numerical order.Sorts the specified array of floats into ascending numerical order.Sorts the specified range of the specified array of floats into ascending numerical order.Sorts the specified array of objects into ascending order, according to the <code>Comparable</code> natural ordering of its elements.Sorts the specified range of the specified array of objects into ascending order, according to the <code>Comparable</code>
1807
+ * natural ordering of its elements.Sorts the specified array of objects according to the order induced by the specified comparator.Sorts the specified range of the specified array of objects according to the order induced by the specified comparator.Searches the specified array of longs for the specified value using the binary search algorithm.Searches a range of the specified array of longs for the specified value using the binary search algorithm.Searches the specified array of ints for the specified value using the binary search algorithm.Searches a range of the specified array of ints for the specified value using the binary search algorithm.Searches the specified array of shorts for the specified value using the binary search algorithm.Searches a range of the specified array of shorts for the specified value using the binary search algorithm.Searches the specified array of chars for the specified value using the binary search algorithm.Searches a range of the specified array of chars for the specified value using the binary search algorithm.Searches the specified array of bytes for the specified value using the binary search algorithm.Searches a range of the specified array of bytes for the specified value using the binary search algorithm.Searches the specified array of doubles for the specified value using the binary search algorithm.Searches a range of the specified array of doubles for the specified value using the binary search algorithm.Searches the specified array of floats for the specified value using the binary search algorithm.Searches a range of the specified array of floats for the specified value using the binary search algorithm.Searches the specified array for the specified object using the binary search algorithm.Searches a range of the specified array for the specified object using the binary search algorithm.Searches the specified array for the specified object using the binary search algorithm.Searches a range of the specified array for the specified object using the binary search algorithm.Returns <tt>true</tt> if the two specified arrays of longs are <i>equal</i> to one another.Returns <tt>true</tt> if the two specified arrays of ints are <i>equal</i> to one another.Returns <tt>true</tt> if the two specified arrays of shorts are <i>equal</i> to one another.Returns <tt>true</tt> if the two specified arrays of chars are <i>equal</i> to one another.Returns <tt>true</tt> if the two specified arrays of bytes are <i>equal</i> to one another.Returns <tt>true</tt> if the two specified arrays of booleans are <i>equal</i> to one another.Returns <tt>true</tt> if the two specified arrays of doubles are <i>equal</i> to one another.Returns <tt>true</tt> if the two specified arrays of floats are <i>equal</i> to one another.Returns <tt>true</tt> if the two specified arrays of Objects are <i>equal</i> to one another.Assigns the specified long value to each element of the specified array of longs.Assigns the specified long value to each element of the specified range of the specified array of longs.Assigns the specified int value to each element of the specified array of ints.Assigns the specified int value to each element of the specified range of the specified array of ints.Assigns the specified short value to each element of the specified array of shorts.Assigns the specified short value to each element of the specified range of the specified array of shorts.Assigns the specified char value to each element of the specified array of chars.Assigns the specified char value to each element of the specified range of the specified array of chars.Assigns the specified byte value to each element of the specified array of bytes.Assigns the specified byte value to each element of the specified range of the specified array of bytes.Assigns the specified boolean value to each element of the specified array of booleans.Assigns the specified boolean value to each element of the specified
1808
+ * range of the specified array of booleans.Assigns the specified double value to each element of the specified array of doubles.Assigns the specified double value to each element of the specified range of the specified array of doubles.Assigns the specified float value to each element of the specified array of floats.Assigns the specified float value to each element of the specified range of the specified array of floats.Assigns the specified Object reference to each element of the specified array of Objects.Assigns the specified Object reference to each element of the specified range of the specified array of Objects.Copies the specified array, truncating or padding with nulls (if necessary) so the copy has the specified length.Copies the specified array, truncating or padding with nulls (if necessary)
1809
+ * so the copy has the specified length.Copies the specified array, truncating or padding with zeros (if necessary)
1810
+ * so the copy has the specified length.Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.Copies the specified array, truncating or padding with null characters (if necessary) so the copy has the specified length.Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.Copies the specified array, truncating or padding with zeros (if necessary) so the copy has the specified length.Copies the specified array, truncating or padding with <tt>false</tt> (if necessary) so the copy has the specified length.Copies the specified range of the specified array into a new array.Copies the specified range of the specified array into a new array.Copies the specified range of the specified array into a new array.Copies the specified range of the specified array into a new array.Copies the specified range of the specified array into a new array.Copies the specified range of the specified array into a new array.Copies the specified range of the specified array into a new array.Copies the specified range of the specified array into a new array.Copies the specified range of the specified array into a new array.Copies the specified range of the specified array into a new array.Returns a fixed-size list backed by the specified array.Returns a hash code based on the contents of the specified array.Returns a hash code based on the contents of the specified array.Returns a hash code based on the contents of the specified array.Returns a hash code based on the contents of the specified array.Returns a hash code based on the contents of the specified array.Returns a hash code based on the contents of the specified array.Returns a hash code based on the contents of the specified array.Returns a hash code based on the contents of the specified array.Returns a hash code based on the contents of the specified array.Returns a hash code based on the "deep contents" of the specified array.Returns <tt>true</tt> if the two specified arrays are <i>deeply equal</i> to one another.Returns a string representation of the contents of the specified array.Returns a string representation of the contents of the specified array.Returns a string representation of the contents of the specified array.Returns a string representation of the contents of the specified array.Returns a string representation of the contents of the specified array.Returns a string representation of the contents of the specified array.Returns a string representation of the contents of the specified array.Returns a string representation of the contents of the specified array.Returns a string representation of the contents of the specified array.Returns a string representation of the "deep contents" of the specified array.Sorts the specified array into ascending numerical order.Sorts the specified range of the array into ascending numerical order.Sorts the specified array into ascending numerical order.Sorts the specified range of the array into ascending numerical order.Sorts the specified array into ascending numerical order.Sorts the specified range of the array into ascending numerical order.Sorts the specified array into ascending numerical order.Sorts the specified range of the array into ascending numerical order.Sorts the specified array into ascending numerical order.Sorts the specified range of the array into ascending numerical order.Sorts the specified array into ascending numerical order.Sorts the specified range of the array into ascending numerical order.Sorts the specified array into ascending numerical order.Sorts the specified range of the array into ascending numerical order.Sorts the specified array of objects into ascending order, according
1811
+ * to the {@linkplain Comparable natural ordering} of its elements.Sorts the specified range of the specified array of objects into
1812
+ * ascending order, according to the
1813
+ * {@linkplain Comparable natural ordering} of its elements.Sorts the specified array of objects according to the order induced by
1814
+ * the specified comparator.Sorts the specified range of the specified array of objects according
1815
+ * to the order induced by the specified comparator.Cumulates, in parallel, each element of the given array in place, using the supplied function.Performs {@link #parallelPrefix(Object[], BinaryOperator)} for the given subrange of the array.Cumulates, in parallel, each element of the given array in place, using the supplied function.Performs {@link #parallelPrefix(long[], LongBinaryOperator)} for the given subrange of the array.Cumulates, in parallel, each element of the given array in place, using the supplied function.Performs {@link #parallelPrefix(double[], DoubleBinaryOperator)} for the given subrange of the array.Cumulates, in parallel, each element of the given array in place, using the supplied function.Performs {@link #parallelPrefix(int[], IntBinaryOperator)} for the given subrange of the array.Set all elements of the specified array, using the provided generator function to compute each element.Set all elements of the specified array, in parallel, using the provided generator function to compute each element.Set all elements of the specified array, using the provided generator function to compute each element.Set all elements of the specified array, in parallel, using the provided generator function to compute each element.Set all elements of the specified array, using the provided generator function to compute each element.Set all elements of the specified array, in parallel, using the provided generator function to compute each element.Set all elements of the specified array, using the provided generator function to compute each element.Set all elements of the specified array, in parallel, using the provided generator function to compute each element.Returns a Spliterator covering all of the specified array.Returns a {@link Spliterator} covering the specified range of the specified array.Returns a {@link Spliterator.OfInt} covering all of the specified array.Returns a {@link Spliterator.OfInt} covering the specified range of the specified array.Returns a {@link Spliterator.OfLong} covering all of the specified array.
1816
+ *
1817
+ * <p>The spliterator reports {@link Spliterator#SIZED},
1818
+ * {@link Spliterator#SUBSIZED}, {@link Spliterator#ORDERED}, and
1819
+ * {@link Spliterator#IMMUTABLE}.Returns a {@link Spliterator.OfLong} covering the specified range of the specified array.Returns a {@link Spliterator.OfDouble} covering all of the specified array.Returns a {@link Spliterator.OfDouble} covering the specified range of the specified array.Returns a sequential {@link Stream} with the specified array as its source.Returns a sequential {@link Stream} with the specified range of the specified array as its source.Returns a sequential {@link IntStream} with the specified array as its source.Returns a sequential {@link IntStream} with the specified range of the specified array as its source.Returns a sequential {@link LongStream} with the specified array as its source.Returns a sequential {@link LongStream} with the specified range of the specified array as its source.Returns a sequential {@link DoubleStream} with the specified array as its source.Returns a sequential {@link DoubleStream} with the specified range of the specified array as its source.
1820
+ * @author Magnus Lövgren
1821
+ * @since Sitevision 3.1
1822
+ */
1823
+ declare namespace ArraysInstance {
1824
+ export {
1825
+ sort,
1826
+ binarySearch,
1827
+ equals,
1828
+ fill,
1829
+ copyOf,
1830
+ copyOfRange,
1831
+ asList,
1832
+ hashCode,
1833
+ deepHashCode,
1834
+ deepEquals,
1835
+ toString,
1836
+ deepToString,
1837
+ parallelSort,
1838
+ parallelPrefix,
1839
+ setAll,
1840
+ parallelSetAll,
1841
+ spliterator,
1842
+ stream,
1843
+ };
1844
+ }
1845
+
1846
+ export default ArraysInstance;