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/IO/ORK/IF_ENCODING
Interface/ORK/IF_ENCODING
Encoding
InterfaceEncoding
Package
/ORK/IO
Members
5
Description

Represents a text encoding that converts between string and byte sequences. Similar in concept to System.Text.Encoding in .NET. Provides controlled conversion behavior including replacement handling.

2 items
Methods
get_bytes
Method
GetBytes

Encodes the specified string into a byte sequence using this encoding.

Parameters

NameDescriptionstringInput string to encode.resultEncoded bytes as XSTRING.

Signature

METHODS get_bytes IMPORTING !string TYPE string
                    RETURNING VALUE(result) TYPE xstring.
get_string
Method
GetString

Decodes the specified byte sequence into a string using this encoding.

Parameters

NameDescriptionbytesInput byte sequence.resultDecoded string.

Signature

METHODS get_string IMPORTING bytes TYPE xstring
                     RETURNING VALUE(result) TYPE string.
1 item
Types
ty_replacement_char
Type

Signature

TYPES ty_replacement_char TYPE c LENGTH 1.
2 items
Data
name
Data
Name

The canonical name of the encoding (for example "utf-8", "utf-16", "iso-8859-1").

Signature

DATA name TYPE string READ-ONLY.
replacement
Data
Replacement

The replacement string used when invalid byte sequences or characters cannot be converted.

Signature

DATA replacement TYPE ty_replacement_char READ-ONLY.
Repository11 packages · 112 objects
123 items