Parameters
resultSignature
METHODS get RETURNING VALUE(result) TYPE string.
| Library | Role | Version | License |
|---|---|---|---|
| Astro | Site framework | 6.3.1 | MIT |
| Astro React | React integration | 5.0.4 | MIT |
| Astro Sitemap | Sitemap generation | 3.7.2 | MIT |
| UI5 Web Components | UI primitives | 2.22.0 | Apache-2.0 |
| UI5 Web Components Fiori | Fiori shell components | 2.22.0 | Apache-2.0 |
| UI5 Web Components Icons | Icon set | 2.22.0 | Apache-2.0 |
| UI5 Web Components React | React wrappers | 2.22.0 | Apache-2.0 |
| React | UI runtime | 19.2.6 | MIT |
| React DOM | DOM renderer | 19.2.6 | MIT |
| Shiki | Syntax highlighting | 4.0.2 | MIT |
Represents a JSON string node. Provides access to the string value and supports cloning, formatting/serialization, equality, and freezing via the base node interface.
Additionally provides Base64 helpers to read/write the content as bytes.
Immutability contract: Any modifying operation must raise an exception if the node is frozen.
resultMETHODS get RETURNING VALUE(result) TYPE string.Sets the string value of this JSON string node. Must raise an exception if the node is frozen.
valueMETHODS set IMPORTING !value TYPE string.Interprets the string value as Base64 and returns the decoded bytes.
resultMETHODS get_b64 RETURNING VALUE(result) TYPE xstring.Encodes the provided bytes as Base64 and stores the result as string value. Must raise an exception if the node is frozen.
valueMETHODS set_b64 IMPORTING !value TYPE xstring.