@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,681 @@
1
+ /**
2
+ * Returns the trigonometric sine of an angle.
3
+ * @param anAngleInRadians an angle, in radians.
4
+ * @return the sine of the argument.
5
+ */
6
+ export function sin(anAngleInRadians: number): number;
7
+
8
+ /**
9
+ * Returns the trigonometric cosine of an angle.
10
+ * @param anAngleInRadians an angle, in radians.
11
+ * @return the cosine of the argument.
12
+ */
13
+ export function cos(anAngleInRadians: number): number;
14
+
15
+ /**
16
+ * Returns the trigonometric tangent of an angle.
17
+ * @param anAngleInRadians an angle, in radians.
18
+ * @return the tangent of the argument.
19
+ */
20
+ export function tan(anAngleInRadians: number): number;
21
+
22
+ /**
23
+ * Returns the arc sine of a value; the returned angle is in the range -<i>pi</i>/2 through <i>pi</i>/2.
24
+ * @param aValue the value whose arc sine is to be returned.
25
+ * @return the arc sine of the argument.
26
+ */
27
+ export function asin(aValue: number): number;
28
+
29
+ /**
30
+ * Returns the arc cosine of a value; the returned angle is in the range 0.0 through <i>pi</i>.
31
+ * @param aValue the value whose arc cosine is to be returned.
32
+ * @return the arc cosine of the argument.
33
+ */
34
+ export function acos(aValue: number): number;
35
+
36
+ /**
37
+ * Returns the arc tangent of a value; the returned angle is in the range -<i>pi</i>/2 through <i>pi</i>/2.
38
+ * @param aValue the value whose arc tangent is to be returned.
39
+ * @return the arc tangent of the argument.
40
+ */
41
+ export function atan(aValue: number): number;
42
+
43
+ /**
44
+ * Converts an angle measured in degrees to an approximately equivalent angle measured in radians.
45
+ * @param anAngleInDegrees an angle, in degrees
46
+ * @return the measurement of the angle <code>anAngleInDegrees</code> in radians.
47
+ */
48
+ export function toRadians(anAngleInDegrees: number): number;
49
+
50
+ /**
51
+ * Converts an angle measured in radians to an approximately equivalent angle measured in degrees.
52
+ * @param anAngleInRadians an angle, in radians
53
+ * @return the measurement of the angle <code>anAngleInRadians</code> in degrees.
54
+ */
55
+ export function toDegrees(anAngleInRadians: number): number;
56
+
57
+ /**
58
+ * Returns Euler's number <i>e</i> raised to the power of a <code>double</code> value.
59
+ * @param anExponent the exponent to raise <i>e</i> to.
60
+ * @return the value <i>e</i><sup><code>anExponent</code></sup>, where <i>e</i> is the base of the natural logarithms.
61
+ */
62
+ export function exp(anExponent: number): number;
63
+
64
+ /**
65
+ * Returns the natural logarithm (base <i>e</i>) of a <code>double</code> value.
66
+ * @param aValue a value
67
+ * @return the value ln&nbsp;<code>aValue</code>, the natural logarithm of <code>aValue</code>.
68
+ */
69
+ export function log(aValue: number): number;
70
+
71
+ /**
72
+ * Returns the base 10 logarithm of a <code>double</code> value.
73
+ * @param aValue a value
74
+ * @return the base 10 logarithm of <code>aValue</code>.
75
+ */
76
+ export function log10(aValue: number): number;
77
+
78
+ /**
79
+ * Returns the correctly rounded positive square root of a <code>double</code> value.
80
+ * @param aValue a value.
81
+ * @return the positive square root of <code>aValue</code>. If the argument is NaN or less than zero, the result is NaN.
82
+ */
83
+ export function sqrt(aValue: number): number;
84
+
85
+ /**
86
+ * Returns the cube root of a <code>double</code> value.
87
+ * @param aValue a value.
88
+ * @return the cube root of <code>aValue</code>.
89
+ */
90
+ export function cbrt(aValue: number): number;
91
+
92
+ /**
93
+ * Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard.
94
+ * @param aDividend the dividend.
95
+ * @param aDivisor the divisor.
96
+ * @return the remainder when <code>aDividend</code> is divided by <code>aDivisor</code>.
97
+ */
98
+ export function IEEEremainder(aDividend: number, aDivisor: number): number;
99
+
100
+ /**
101
+ * Returns the smallest (closest to negative infinity) <code>double</code> value that is greater than
102
+ * or equal to the argument and is equal to a mathematical integer.
103
+ * @param aValue a value.
104
+ * @return the smallest (closest to negative infinity) floating-point value that is greater than or equal to the argument and is equal to a mathematical integer.
105
+ */
106
+ export function ceil(aValue: number): number;
107
+
108
+ /**
109
+ * Returns the largest (closest to positive infinity) <code>double</code> value that is less than
110
+ * or equal to the argument and is equal to a mathematical integer.
111
+ * @param aValue a value.
112
+ * @return the largest (closest to positive infinity) floating-point value that less than or equal to the argument and is equal to a mathematical integer.
113
+ */
114
+ export function floor(aValue: number): number;
115
+
116
+ /**
117
+ * Returns the <code>double</code> value that is closest in value to the argument and is equal to
118
+ * a mathematical integer.
119
+ * @param aValue a value.
120
+ * @return the closest floating-point value to <code>aValue</code> that is equal to a mathematical integer.
121
+ */
122
+ export function rint(aValue: number): number;
123
+
124
+ /**
125
+ * Returns the angle <i>theta</i> from the conversion of rectangular coordinates
126
+ * (<code>x</code>,&nbsp;<code>y</code>) to polar coordinates (r,&nbsp;<i>theta</i>).
127
+ * @param y the ordinate coordinate
128
+ * @param x the abscissa coordinate
129
+ * @return the <i>theta</i> component of the point (<i>r</i>,&nbsp;<i>theta</i>) in polar coordinates that corresponds to the point (<i>x</i>,&nbsp;<i>y</i>) in Cartesian coordinates.
130
+ */
131
+ export function atan2(y: number, x: number): number;
132
+
133
+ /**
134
+ * Returns the value of the first argument raised to the power of the second argument.
135
+ * @param aBase the base.
136
+ * @param anExponent the exponent.
137
+ * @return the value <code>aBase<sup>anExponent</sup></code>.
138
+ */
139
+ export function pow(aBase: number, anExponent: number): number;
140
+
141
+ /**
142
+ * Returns the closest <code>int</code> to the argument.
143
+ * @param aValue a floating-point value to be rounded to an integer.
144
+ * @return the value of the argument rounded to the nearest <code>int</code> value.
145
+ */
146
+ export function round(aValue: number): number;
147
+
148
+ /**
149
+ * Returns the closest <code>long</code> to the argument.
150
+ * @param aValue a floating-point value to be rounded to a <code>long</code>.
151
+ * @return the value of the argument rounded to the nearest <code>long</code> value.
152
+ */
153
+ export function round(aValue: number): number;
154
+
155
+ /**
156
+ * Returns a <code>double</code> value with a positive sign, greater
157
+ * than or equal to <code>0.0</code> and less than <code>1.0</code>.
158
+ * @return a pseudorandom <code>double</code> greater than or equal to <code>0.0</code> and less than <code>1.0</code>.
159
+ */
160
+ export function random(): number;
161
+
162
+ /**
163
+ * Returns the absolute value of an <code>int</code> value.
164
+ * @param aValue the argument whose absolute value is to be determined
165
+ * @return the absolute value of the argument.
166
+ */
167
+ export function abs(aValue: number): number;
168
+
169
+ /**
170
+ * Returns the absolute value of a <code>long</code> value.
171
+ * @param aValue the argument whose absolute value is to be determined
172
+ * @return the absolute value of the argument.
173
+ */
174
+ export function abs(aValue: number): number;
175
+
176
+ /**
177
+ * Returns the absolute value of a <code>float</code> value.
178
+ * @param aValue the argument whose absolute value is to be determined
179
+ * @return the absolute value of the argument.
180
+ */
181
+ export function abs(aValue: number): number;
182
+
183
+ /**
184
+ * Returns the absolute value of a <code>double</code> value.
185
+ * @param aValue the argument whose absolute value is to be determined
186
+ * @return the absolute value of the argument.
187
+ */
188
+ export function abs(aValue: number): number;
189
+
190
+ /**
191
+ * Returns the greater of two <code>int</code> values.
192
+ * @param aValue an argument.
193
+ * @param anAnotherValue another argument.
194
+ * @return the larger of <code>aValue</code> and <code>anAnotherValue</code>.
195
+ */
196
+ export function max(aValue: number, anAnotherValue: number): number;
197
+
198
+ /**
199
+ * Returns the greater of two <code>long</code> values.
200
+ * @param aValue an argument.
201
+ * @param anAnotherValue another argument.
202
+ * @return the larger of <code>a</code> and <code>anAnotherValue</code>.
203
+ */
204
+ export function max(aValue: number, anAnotherValue: number): number;
205
+
206
+ /**
207
+ * Returns the greater of two <code>float</code> values.
208
+ * @param aValue an argument.
209
+ * @param anAnotherValue another argument.
210
+ * @return the larger of <code>aValue</code> and <code>anAnotherValue</code>.
211
+ */
212
+ export function max(aValue: number, anAnotherValue: number): number;
213
+
214
+ /**
215
+ * Returns the greater of two <code>double</code> values.
216
+ * @param aValue an argument.
217
+ * @param anAnotherValue another argument.
218
+ * @return the larger of <code>aValue</code> and <code>anAnotherValue</code>.
219
+ */
220
+ export function max(aValue: number, anAnotherValue: number): number;
221
+
222
+ /**
223
+ * Returns the smaller of two <code>int</code> values.
224
+ * @param aValue an argument.
225
+ * @param anAnotherValue another argument.
226
+ * @return the smaller of <code>aValue</code> and <code>anAnotherValue</code>.
227
+ */
228
+ export function min(aValue: number, anAnotherValue: number): number;
229
+
230
+ /**
231
+ * Returns the smaller of two <code>long</code> values.
232
+ * @param aValue an argument.
233
+ * @param anAnotherValue another argument.
234
+ * @return the smaller of <code>aValue</code> and <code>anAnotherValue</code>.
235
+ */
236
+ export function min(aValue: number, anAnotherValue: number): number;
237
+
238
+ /**
239
+ * Returns the smaller of two <code>float</code> values.
240
+ * @param aValue an argument.
241
+ * @param anAnotherValue another argument.
242
+ * @return the smaller of <code>aValue</code> and <code>anAnotherValue</code>.
243
+ */
244
+ export function min(aValue: number, anAnotherValue: number): number;
245
+
246
+ /**
247
+ * Returns the smaller of two <code>double</code> values.
248
+ * @param aValue an argument.
249
+ * @param anAnotherValue another argument.
250
+ * @return the smaller of <code>aValue</code> and <code>anAnotherValue</code>.
251
+ */
252
+ export function min(aValue: number, anAnotherValue: number): number;
253
+
254
+ /**
255
+ * Returns the size of an ulp of the argument.
256
+ * @param aValue the floating-point value whose ulp is to be returned
257
+ * @return the size of an ulp of the argument
258
+ */
259
+ export function ulp(aValue: number): number;
260
+
261
+ /**
262
+ * Returns the size of an ulp of the argument.
263
+ * @param aValue the floating-point value whose ulp is to be returned
264
+ * @return the size of an ulp of the argument
265
+ */
266
+ export function ulp(aValue: number): number;
267
+
268
+ /**
269
+ * Returns the signum function of the argument.
270
+ * @param aValue the floating-point value whose signum is to be returned
271
+ * @return the signum function of the argument
272
+ */
273
+ export function signum(aValue: number): number;
274
+
275
+ /**
276
+ * Returns the signum function of the argument.
277
+ * @param aValue the floating-point value whose signum is to be returned
278
+ * @return the signum function of the argument
279
+ */
280
+ export function signum(aValue: number): number;
281
+
282
+ /**
283
+ * Returns the hyperbolic sine of a <code>double</code> value.
284
+ * @param aValue The number whose hyperbolic sine is to be returned.
285
+ * @return The hyperbolic sine of <code>aValue</code>.
286
+ */
287
+ export function sinh(aValue: number): number;
288
+
289
+ /**
290
+ * Returns the hyperbolic cosine of a <code>double</code> value.
291
+ * @param aValue The number whose hyperbolic cosine is to be returned.
292
+ * @return The hyperbolic cosine of <code>aValue</code>.
293
+ */
294
+ export function cosh(aValue: number): number;
295
+
296
+ /**
297
+ * Returns the hyperbolic tangent of a <code>double</code> value.
298
+ * @param aValue The number whose hyperbolic tangent is to be returned.
299
+ * @return The hyperbolic tangent of <code>aValue</code>.
300
+ */
301
+ export function tanh(aValue: number): number;
302
+
303
+ /**
304
+ * Returns sqrt(<i>x</i><sup>2</sup>&nbsp;+<i>y</i><sup>2</sup>) without intermediate overflow or underflow.
305
+ * @param x a value
306
+ * @param y a value
307
+ * @return sqrt(<i>x</i><sup>2</sup>&nbsp;+<i>y</i><sup>2</sup>) without intermediate overflow or underflow
308
+ */
309
+ export function hypot(x: number, y: number): number;
310
+
311
+ /**
312
+ * Returns <i>e</i><sup>x</sup>&nbsp;-1.
313
+ * @param x the exponent to raise <i>e</i> to in the computation of <i>e</i><sup><code>x</code></sup>&nbsp;-1.
314
+ * @return the value <i>e</i><sup><code>x</code></sup>&nbsp;-&nbsp;1.
315
+ */
316
+ export function expm1(x: number): number;
317
+
318
+ /**
319
+ * Returns the natural logarithm of the sum of the argument and 1.
320
+ * @param aValue a value
321
+ * @return the value ln(<code>aValue</code>&nbsp;+&nbsp;1), the natural log of <code>aValue</code>&nbsp;+&nbsp;1
322
+ */
323
+ export function log1p(aValue: number): number;
324
+
325
+ /**
326
+ * Returns the first floating-point argument with the sign of the second floating-point argument.
327
+ * @param aMagnitude the parameter providing the magnitude of the result
328
+ * @param aSign the parameter providing the sign of the result
329
+ * @return a value with the magnitude of <code>aMagnitude</code> and the sign of <code>aSign</code>.
330
+ */
331
+ export function copySign(aMagnitude: number, aSign: number): number;
332
+
333
+ /**
334
+ * Returns the first floating-point argument with the sign of the second floating-point argument.
335
+ * @param aMagnitude the parameter providing the magnitude of the result
336
+ * @param aSign the parameter providing the sign of the result
337
+ * @return a value with the magnitude of <code>aMagnitude</code> and the sign of <code>aSign</code>.
338
+ */
339
+ export function copySign(aMagnitude: number, aSign: number): number;
340
+
341
+ /**
342
+ * Returns the unbiased exponent used in the representation of a <code>float</code>.
343
+ * @param aValue a float value
344
+ * @return the unbiased exponent of the argument
345
+ */
346
+ export function getExponent(aValue: number): number;
347
+
348
+ /**
349
+ * Returns the unbiased exponent used in the representation of a <code>double</code>.
350
+ * @param aValue a double value
351
+ * @return the unbiased exponent of the argument
352
+ */
353
+ export function getExponent(aValue: number): number;
354
+
355
+ /**
356
+ * Returns the floating-point number adjacent to the first argument in the direction of the second argument.
357
+ * @param aStart starting floating-point value
358
+ * @param aDirection value indicating which of <code>aStart</code>'s neighbors or <code>aStart</code> should be returned
359
+ * @return The floating-point number adjacent to <code>aStart</code> in the direction of <code>aDirection</code>.
360
+ */
361
+ export function nextAfter(aStart: number, aDirection: number): number;
362
+
363
+ /**
364
+ * Returns the floating-point number adjacent to the first argument in the direction of the second argument.
365
+ * @param aStart starting floating-point value
366
+ * @param aDirection value indicating which of <code>aStart</code>'s neighbors or <code>aStart</code> should be returned
367
+ * @return The floating-point number adjacent to <code>aStart</code> in the direction of <code>aDirection</code>.
368
+ */
369
+ export function nextAfter(aStart: number, aDirection: number): number;
370
+
371
+ /**
372
+ * Returns the floating-point value adjacent to a <code>double</code> in the direction of positive infinity.
373
+ * @param aValue starting floating-point value
374
+ * @return The adjacent floating-point value closer to positive infinity.
375
+ */
376
+ export function nextUp(aValue: number): number;
377
+
378
+ /**
379
+ * Returns the floating-point value adjacent to a <code>float</code> in the direction of positive infinity.
380
+ * @param aValue starting floating-point value
381
+ * @return The adjacent floating-point value closer to positive infinity.
382
+ */
383
+ export function nextUp(aValue: number): number;
384
+
385
+ /**
386
+ * Return <code>aDouble</code> &times; 2<sup><code>aScaleFactor</code></sup> rounded as if performed
387
+ * by a single correctly rounded floating-point multiply to a member of the double value set.
388
+ * @param aDouble number to be scaled by a power of two.
389
+ * @param aScaleFactor power of 2 used to scale <code>aDouble</code>
390
+ * @return <code>aDouble</code> &times; 2<sup><code>aScaleFactor</code></sup>
391
+ */
392
+ export function scalb(aDouble: number, aScaleFactor: number): number;
393
+
394
+ /**
395
+ * Return <code>aFloat</code> &times; 2<sup><code>aScaleFactor</code></sup> rounded as if performed
396
+ * by a single correctly rounded floating-point multiply to a member of the float value set.
397
+ * @param aFloat number to be scaled by a power of two.
398
+ * @param aScaleFactor power of 2 used to scale <code>aFloat</code>
399
+ * @return <code>aFloat</code> &times; 2<sup><code>aScaleFactor</code></sup>
400
+ */
401
+ export function scalb(aFloat: number, aScaleFactor: number): number;
402
+
403
+ /**
404
+ * Returns the sum of its arguments,throwing an exception if the result overflows an {@code int}.
405
+ * @param x the first value
406
+ * @param y the second value
407
+ * @return the result
408
+ * @throws ArithmeticException if the result overflows an int
409
+ * @since Sitevision 4.0
410
+ * @since Java 1.8
411
+ */
412
+ export function addExact(x: number, y: number): number;
413
+
414
+ /**
415
+ * Returns the sum of its arguments, throwing an exception if the result overflows a {@code long}.
416
+ * @param x the first value
417
+ * @param y the second value
418
+ * @return the result
419
+ * @throws ArithmeticException if the result overflows a long
420
+ * @since Sitevision 4.0
421
+ * @since Java 1.8
422
+ */
423
+ export function addExact(x: number, y: number): number;
424
+
425
+ /**
426
+ * Returns the difference of the arguments, throwing an exception if the result overflows an {@code int}.
427
+ * @param x the first value
428
+ * @param y the second value to subtract from the first
429
+ * @return the result
430
+ * @throws ArithmeticException if the result overflows an int
431
+ * @since Sitevision 4.0
432
+ * @since Java 1.8
433
+ */
434
+ export function subtractExact(x: number, y: number): number;
435
+
436
+ /**
437
+ * Returns the difference of the arguments, throwing an exception if the result overflows a {@code long}.
438
+ * @param x the first value
439
+ * @param y the second value to subtract from the first
440
+ * @return the result
441
+ * @throws ArithmeticException if the result overflows a long
442
+ * @since Sitevision 4.0
443
+ * @since Java 1.8
444
+ */
445
+ export function subtractExact(x: number, y: number): number;
446
+
447
+ /**
448
+ * Returns the product of the arguments, throwing an exception if the result overflows an {@code int}.
449
+ * @param x the first value
450
+ * @param y the second value
451
+ * @return the result
452
+ * @throws ArithmeticException if the result overflows an int
453
+ * @since Sitevision 4.0
454
+ * @since Java 1.8
455
+ */
456
+ export function multiplyExact(x: number, y: number): number;
457
+
458
+ /**
459
+ * Returns the product of the arguments, throwing an exception if the result overflows a {@code long}.
460
+ * @param x the first value
461
+ * @param y the second value
462
+ * @return the result
463
+ * @throws ArithmeticException if the result overflows a long
464
+ * @since Sitevision 4.0
465
+ * @since Java 1.8
466
+ */
467
+ export function multiplyExact(x: number, y: number): number;
468
+
469
+ /**
470
+ * Returns the argument incremented by one, throwing an exception if the result overflows an {@code int}.
471
+ * @param a the value to increment
472
+ * @return the result
473
+ * @throws ArithmeticException if the result overflows an int
474
+ * @since Sitevision 4.0
475
+ * @since Java 1.8
476
+ */
477
+ export function incrementExact(a: number): number;
478
+
479
+ /**
480
+ * Returns the argument incremented by one, throwing an exception if the result overflows a {@code long}.
481
+ * @param a the value to increment
482
+ * @return the result
483
+ * @throws ArithmeticException if the result overflows a long
484
+ * @since Sitevision 4.0
485
+ * @since Java 1.8
486
+ */
487
+ export function incrementExact(a: number): number;
488
+
489
+ /**
490
+ * Returns the argument decremented by one, throwing an exception if the result overflows an {@code int}.
491
+ * @param a the value to decrement
492
+ * @return the result
493
+ * @throws ArithmeticException if the result overflows an int
494
+ * @since Sitevision 4.0
495
+ * @since Java 1.8
496
+ */
497
+ export function decrementExact(a: number): number;
498
+
499
+ /**
500
+ * Returns the argument decremented by one, throwing an exception if the result overflows a {@code long}.
501
+ * @param a the value to decrement
502
+ * @return the result
503
+ * @throws ArithmeticException if the result overflows a long
504
+ * @since Sitevision 4.0
505
+ * @since Java 1.8
506
+ */
507
+ export function decrementExact(a: number): number;
508
+
509
+ /**
510
+ * Returns the negation of the argument, throwing an exception if the result overflows an {@code int}.
511
+ * @param a the value to negate
512
+ * @return the result
513
+ * @throws ArithmeticException if the result overflows an int
514
+ * @since Sitevision 4.0
515
+ * @since Java 1.8
516
+ */
517
+ export function negateExact(a: number): number;
518
+
519
+ /**
520
+ * Returns the negation of the argument, throwing an exception if the result overflows a {@code long}.
521
+ * @param a the value to negate
522
+ * @return the result
523
+ * @throws ArithmeticException if the result overflows a long
524
+ * @since Sitevision 4.0
525
+ * @since Java 1.8
526
+ */
527
+ export function negateExact(a: number): number;
528
+
529
+ /**
530
+ * Returns the value of the {@code long} argument, throwing an exception if the value overflows an {@code int}.
531
+ * @param value the long value
532
+ * @return the argument as an int
533
+ * @throws ArithmeticException if the {@code argument} overflows an int
534
+ * @since 1.8
535
+ */
536
+ export function toIntExact(value: number): number;
537
+
538
+ /**
539
+ * Returns the largest (closest to positive infinity) {@code int} value that is less than or equal to the algebraic quotient.
540
+ * @param x the dividend
541
+ * @param y the divisor
542
+ * @return the largest (closest to positive infinity) {@code int} value that is less than or equal to the algebraic quotient.
543
+ * @throws ArithmeticException if the divisor {@code y} is zero
544
+ * @see #floorMod(int, int)
545
+ * @see #floor(double)
546
+ * @since Sitevision 4.0
547
+ * @since Java 1.8
548
+ */
549
+ export function floorDiv(x: number, y: number): number;
550
+
551
+ /**
552
+ * Returns the largest (closest to positive infinity) {@code long} value that is less than or equal to the algebraic quotient.
553
+ * @param x the dividend
554
+ * @param y the divisor
555
+ * @return the largest (closest to positive infinity) {@code long} value that is less than or equal to the algebraic quotient.
556
+ * @throws ArithmeticException if the divisor {@code y} is zero
557
+ * @see #floorMod(long, long)
558
+ * @see #floor(double)
559
+ * @since Sitevision 4.0
560
+ * @since Java 1.8
561
+ */
562
+ export function floorDiv(x: number, y: number): number;
563
+
564
+ /**
565
+ * Returns the floor modulus of the {@code int} arguments.
566
+ * @param x the dividend
567
+ * @param y the divisor
568
+ * @return the floor modulus {@code x - (floorDiv(x, y) * y)}
569
+ * @throws ArithmeticException if the divisor {@code y} is zero
570
+ * @see #floorDiv(int, int)
571
+ * @since 1.8
572
+ */
573
+ export function floorMod(x: number, y: number): number;
574
+
575
+ /**
576
+ * Returns the floor modulus of the {@code long} arguments.
577
+ * @param x the dividend
578
+ * @param y the divisor
579
+ * @return the floor modulus {@code x - (floorDiv(x, y) * y)}
580
+ * @throws ArithmeticException if the divisor {@code y} is zero
581
+ * @see #floorDiv(long, long)
582
+ * @since Sitevision 4.0
583
+ * @since Java 1.8
584
+ */
585
+ export function floorMod(x: number, y: number): number;
586
+
587
+ /**
588
+ * Returns the floating-point value adjacent to {@code d} in the direction of negative infinity.
589
+ * @param d starting floating-point value
590
+ * @return The adjacent floating-point value closer to negative infinity.
591
+ * @since Sitevision 4.0
592
+ * @since Java 1.8
593
+ */
594
+ export function nextDown(d: number): number;
595
+
596
+ /**
597
+ * Returns the floating-point value adjacent to {@code f} in the direction of negative infinity.
598
+ * @param f starting floating-point value
599
+ * @return The adjacent floating-point value closer to negative infinity.
600
+ * @since Sitevision 4.0
601
+ * @since Java 1.8
602
+ */
603
+ export function nextDown(f: number): number;
604
+
605
+ /**
606
+ * Instance wrapper for the <code>java.lang.Math</code> class that delegates all method calls to
607
+ * the corresponding <code>Math</code> method.
608
+ *
609
+ * <p>
610
+ * <em>Note! Method documentations in this interface are only excerpts. For full documentation, see official java.lang.Math Javadoc</em>
611
+ * </p>
612
+ *
613
+ * <p>
614
+ * An instance of the Sitevision class implementing this interface can be obtained via {@link InstanceCreatorUtil#getMathInstance()}.
615
+ * See {@link InstanceCreatorUtil} for how to obtain an instance of the <code>InstanceCreatorUtil</code> interface.
616
+ * </p>Returns the trigonometric sine of an angle.Returns the trigonometric cosine of an angle.Returns the trigonometric tangent of an angle.Returns the arc sine of a value; the returned angle is in the range -<i>pi</i>/2 through <i>pi</i>/2.Returns the arc cosine of a value; the returned angle is in the range 0.0 through <i>pi</i>.Returns the arc tangent of a value; the returned angle is in the range -<i>pi</i>/2 through <i>pi</i>/2.Converts an angle measured in degrees to an approximately equivalent angle measured in radians.Converts an angle measured in radians to an approximately equivalent angle measured in degrees.Returns Euler's number <i>e</i> raised to the power of a <code>double</code> value.Returns the natural logarithm (base <i>e</i>) of a <code>double</code> value.Returns the base 10 logarithm of a <code>double</code> value.Returns the correctly rounded positive square root of a <code>double</code> value.Returns the cube root of a <code>double</code> value.Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard.Returns the smallest (closest to negative infinity) <code>double</code> value that is greater than
617
+ * or equal to the argument and is equal to a mathematical integer.Returns the largest (closest to positive infinity) <code>double</code> value that is less than
618
+ * or equal to the argument and is equal to a mathematical integer.Returns the <code>double</code> value that is closest in value to the argument and is equal to
619
+ * a mathematical integer.Returns the angle <i>theta</i> from the conversion of rectangular coordinates
620
+ * (<code>x</code>,&nbsp;<code>y</code>) to polar coordinates (r,&nbsp;<i>theta</i>).Returns the value of the first argument raised to the power of the second argument.Returns the closest <code>int</code> to the argument.Returns the closest <code>long</code> to the argument.Returns a <code>double</code> value with a positive sign, greater
621
+ * than or equal to <code>0.0</code> and less than <code>1.0</code>.Returns the absolute value of an <code>int</code> value.Returns the absolute value of a <code>long</code> value.Returns the absolute value of a <code>float</code> value.Returns the absolute value of a <code>double</code> value.Returns the greater of two <code>int</code> values.Returns the greater of two <code>long</code> values.Returns the greater of two <code>float</code> values.Returns the greater of two <code>double</code> values.Returns the smaller of two <code>int</code> values.Returns the smaller of two <code>long</code> values.Returns the smaller of two <code>float</code> values.Returns the smaller of two <code>double</code> values.Returns the size of an ulp of the argument.Returns the size of an ulp of the argument.Returns the signum function of the argument.Returns the signum function of the argument.Returns the hyperbolic sine of a <code>double</code> value.Returns the hyperbolic cosine of a <code>double</code> value.Returns the hyperbolic tangent of a <code>double</code> value.Returns sqrt(<i>x</i><sup>2</sup>&nbsp;+<i>y</i><sup>2</sup>) without intermediate overflow or underflow.Returns <i>e</i><sup>x</sup>&nbsp;-1.Returns the natural logarithm of the sum of the argument and 1.Returns the first floating-point argument with the sign of the second floating-point argument.Returns the first floating-point argument with the sign of the second floating-point argument.Returns the unbiased exponent used in the representation of a <code>float</code>.Returns the unbiased exponent used in the representation of a <code>double</code>.Returns the floating-point number adjacent to the first argument in the direction of the second argument.Returns the floating-point number adjacent to the first argument in the direction of the second argument.Returns the floating-point value adjacent to a <code>double</code> in the direction of positive infinity.Returns the floating-point value adjacent to a <code>float</code> in the direction of positive infinity.Return <code>aDouble</code> &times; 2<sup><code>aScaleFactor</code></sup> rounded as if performed
622
+ * by a single correctly rounded floating-point multiply to a member of the double value set.Return <code>aFloat</code> &times; 2<sup><code>aScaleFactor</code></sup> rounded as if performed
623
+ * by a single correctly rounded floating-point multiply to a member of the float value set.Returns the sum of its arguments,throwing an exception if the result overflows an {@code int}.Returns the sum of its arguments, throwing an exception if the result overflows a {@code long}.Returns the difference of the arguments, throwing an exception if the result overflows an {@code int}.Returns the difference of the arguments, throwing an exception if the result overflows a {@code long}.Returns the product of the arguments, throwing an exception if the result overflows an {@code int}.Returns the product of the arguments, throwing an exception if the result overflows a {@code long}.Returns the argument incremented by one, throwing an exception if the result overflows an {@code int}.Returns the argument incremented by one, throwing an exception if the result overflows a {@code long}.Returns the argument decremented by one, throwing an exception if the result overflows an {@code int}.Returns the argument decremented by one, throwing an exception if the result overflows a {@code long}.Returns the negation of the argument, throwing an exception if the result overflows an {@code int}.Returns the negation of the argument, throwing an exception if the result overflows a {@code long}.Returns the value of the {@code long} argument, throwing an exception if the value overflows an {@code int}.Returns the largest (closest to positive infinity) {@code int} value that is less than or equal to the algebraic quotient.Returns the largest (closest to positive infinity) {@code long} value that is less than or equal to the algebraic quotient.Returns the floor modulus of the {@code int} arguments.Returns the floor modulus of the {@code long} arguments.Returns the floating-point value adjacent to {@code d} in the direction of negative infinity.Returns the floating-point value adjacent to {@code f} in the direction of negative infinity.The <code>double</code> value that is closer than any other to
624
+ * <i>e</i>, the base of the natural logarithms.The <code>double</code> value that is closer than any other to
625
+ * <i>pi</i>, the ratio of the circumference of a circle to its diameter.
626
+ * @author Magnus Lövgren
627
+ * @since Sitevision 3.1
628
+ */
629
+ declare namespace MathInstance {
630
+ export {
631
+ sin,
632
+ cos,
633
+ tan,
634
+ asin,
635
+ acos,
636
+ atan,
637
+ toRadians,
638
+ toDegrees,
639
+ exp,
640
+ log,
641
+ log10,
642
+ sqrt,
643
+ cbrt,
644
+ IEEEremainder,
645
+ ceil,
646
+ floor,
647
+ rint,
648
+ atan2,
649
+ pow,
650
+ round,
651
+ random,
652
+ abs,
653
+ max,
654
+ min,
655
+ ulp,
656
+ signum,
657
+ sinh,
658
+ cosh,
659
+ tanh,
660
+ hypot,
661
+ expm1,
662
+ log1p,
663
+ copySign,
664
+ getExponent,
665
+ nextAfter,
666
+ nextUp,
667
+ scalb,
668
+ addExact,
669
+ subtractExact,
670
+ multiplyExact,
671
+ incrementExact,
672
+ decrementExact,
673
+ negateExact,
674
+ toIntExact,
675
+ floorDiv,
676
+ floorMod,
677
+ nextDown,
678
+ };
679
+ }
680
+
681
+ export default MathInstance;