Annotation Type Timespan
@Retention(RUNTIME) @Target({FIELD,TYPE,METHOD}) public @interface Timespan
Event field annotation, specifies that the value is a duration.
- Since:
- 9
Fields
Modifier and Type | Fields | Description |
---|---|---|
static String | MICROSECONDS | Unit for microseconds. |
static String | MILLISECONDS | Unit for milliseconds. |
static String | NANOSECONDS | Unit for nanoseconds. |
static String | SECONDS | Unit for seconds. |
static String | TICKS | Unit for ticks. |
Optional Elements
Modifier and Type | Optional Element | Description |
---|---|---|
String | value | Returns the unit of measure for the time span. |
Fields
TICKS
static final String TICKS
Unit for ticks.
SECONDS
static final String SECONDS
Unit for seconds.
MILLISECONDS
static final String MILLISECONDS
Unit for milliseconds.
NANOSECONDS
static final String NANOSECONDS
Unit for nanoseconds.
MICROSECONDS
static final String MICROSECONDS
Unit for microseconds.
Elements
value
String value
Returns the unit of measure for the time span.
By default, the unit is nanoseconds.
- Returns:
- the time span unit, default
#NANOSECONDS
, notnull
- Default:
- "NANOSECONDS"
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.jfr/jdk/jfr/Timespan.html