GitHub
LibrariesOpen source libraries used to build this documentation site.
LibraryRoleVersionLicense
AstroastroSite framework6.3.1MIT
Astro React@astrojs/reactReact integration5.0.4MIT
Astro Sitemap@astrojs/sitemapSitemap generation3.7.2MIT
UI5 Web Components@ui5/webcomponentsUI primitives2.22.0Apache-2.0
UI5 Web Components Fiori@ui5/webcomponents-fioriFiori shell components2.22.0Apache-2.0
UI5 Web Components Icons@ui5/webcomponents-iconsIcon set2.22.0Apache-2.0
UI5 Web Components React@ui5/webcomponents-reactReact wrappers2.22.0Apache-2.0
ReactreactUI runtime19.2.6MIT
React DOMreact-domDOM renderer19.2.6MIT
ShikishikiSyntax highlighting4.0.2MIT
Docs/ORK/JSON_NODE/ORK/IF_JSON_NODE_ENUMERATOR
Interface/ORK/IF_JSON_NODE_ENUMERATOR
JSON Node Enumerator
InterfaceJSON Node Enumerator
Package
/ORK/JSON_NODE
Members
4
Description

Defines sequential access to a collection of JSON nodes. Provides controlled forward-only iteration over the underlying sequence.

The enumerator maintains an internal cursor positioned:

  • Before the first node (initial state)
  • On a valid node after a successful move_next
  • After the last node if iteration has completed

3 items
Methods
current
Method
Current enumeration item

Returns the current node of the iteration. Must only be called after a successful move_next.

@parameter result |

Signature

METHODS current RETURNING VALUE(result) TYPE ty_s_item.
move_next
Method
abap_true if the next node exists, otherwise abap_false

Advances the internal cursor to the next node in the sequence.

@parameter result |

Signature

METHODS move_next RETURNING VALUE(result) TYPE abap_bool.
reset
Method
Reset enumeration

Resets the internal cursor to its initial position, before the first node of the sequence.

Signature

METHODS reset.
1 item
Types
ty_s_item
Type
Enumeration item

Represents the current JSON node within the iteration context.

Signature

BEGIN OF ty_s_item,
Repository11 packages · 112 objects
123 items