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/DATE_TIME/ORK/IF_STOPWATCH
Interface/ORK/IF_STOPWATCH
Stopwatch
InterfaceStopwatch
Package
/ORK/DATE_TIME
Members
7
7 items
Methods
elapsed
Method

Returns the time elapsed since the stopwatch was started. If the stopwatch is currently running, the duration is calculated up to the moment of the call. If it has not been started yet, a zero duration is returned.

Parameters

NameDescriptionresultDuration object representing the elapsed time

Signature

METHODS elapsed RETURNING VALUE(result) TYPE REF TO /ork/if_duration.
is_high_resolution
Method

Indicates whether the stopwatch implementation supports high-resolution time measurement.

High-resolution stopwatches provide more precise timing values, typically suitable for performance measurements.

Parameters

NameDescriptionresultABAP_TRUE if high-resolution timing is supported

Signature

METHODS is_high_resolution RETURNING VALUE(result) TYPE abap_bool.
is_running
Method

Returns whether the stopwatch is currently running.

Parameters

NameDescriptionresultABAP_TRUE if the stopwatch is active

Signature

METHODS is_running RETURNING VALUE(result) TYPE abap_bool.
reset
Method

Resets the stopwatch to its initial state.

Any previously measured time is discarded and the stopwatch is set to a stopped state.

Signature

METHODS reset.
restart
Method

Restarts the stopwatch.

This method is a convenience operation equivalent to calling RESET followed immediately by START.

Signature

METHODS restart.
start
Method

Starts or resumes the stopwatch.

If the stopwatch is already running, this call has no effect.

Signature

METHODS start.
stop
Method

Stops the stopwatch.

After stopping, the currently measured elapsed time remains available and can be retrieved using the ELAPSED method. Calling STOP on an already stopped stopwatch has no effect.

Signature

METHODS stop.
Repository11 packages · 112 objects
123 items