Skip to main content
Version: Java (Groovy)

epochSeconds

Returns seconds from the Epoch for a date-time value.

Syntax

epochSeconds(instant)
epochSeconds(dateTime)

Parameters

ParameterTypeDescription
instantInstant

Instant to compute the Epoch offset for.

dateTimeZonedDateTime

ZonedDateTime to compute the Epoch offset for.

Returns

Seconds from the Epoch.

Examples

datetime = parseInstant("2022-01-01T05:04:02 ET")
println epochSeconds(datetime)