Time functions
Date and time utilities from io.deephaven.time.DateTimeUtils including parsing, formatting, arithmetic, and time zones.
| Type | Name | Signature | Description |
|---|---|---|---|
| CLASS | DateTimeUtils | None | Functions for working with time. |
| CLASS | Duration | None | A time-based amount of time, such as '34.5 seconds'. This class models a quantity or amount of... |
| CLASS | Instant | None | An instantaneous point on the time-line. This class models a single instantaneous point on the... |
| CLASS | LocalDate | None | A date without a time-zone in the ISO-8601 calendar system, such as 2007-12-03. LocalDate is a... |
| CLASS | LocalTime | None | A time without a time-zone in the ISO-8601 calendar system, such as 10:15:30. LocalTime is an ... |
| CLASS | Period | None | A date-based amount of time in the ISO-8601 calendar system, such as '2 years, 3 months and 4 da... |
| CLASS | ZonedDateTime | None | A date-time with a time-zone in the ISO-8601 calendar system, such as 2007-12-03T10:15:30+01:00 ... |
| CONSTANT | DAY | long | One day in nanoseconds. This is one hour of wall time and does not take into account calendar adj... |
| CONSTANT | DAYS_PER_NANO | double | Number of days per nanosecond. |
| CONSTANT | HOUR | long | One hour in nanoseconds. |
| CONSTANT | HOURS_PER_NANO | double | Number of hours per nanosecond. |
| CONSTANT | MICRO | long | One microsecond in nanoseconds. |
| CONSTANT | MILLI | long | One millisecond in nanoseconds. |
| CONSTANT | MINUTE | long | One minute in nanoseconds. |
| CONSTANT | MINUTES_PER_NANO | double | Number of minutes per nanosecond. |
| CONSTANT | SECOND | long | One second in nanoseconds. |
| CONSTANT | SECONDS_PER_NANO | double | Number of seconds per nanosecond. |
| CONSTANT | WEEK | long | One week in nanoseconds. This is 7 days of wall time and does not take into account calendar adju... |
| CONSTANT | YEARS_PER_NANO_365 | double | Number of 365 day years per nanosecond. |
| CONSTANT | YEARS_PER_NANO_AVG | double | Number of average (365.2425 day) years per nanosecond. |
| CONSTANT | YEAR_365 | long | One 365 day year in nanoseconds. This is 365 days of wall time and does not take into account cal... |
| CONSTANT | YEAR_AVG | long | One average year in nanoseconds. This is 365.2425 days of wall time and does not take into accoun... |
| CONSTANT | ZERO_LENGTH_INSTANT_ARRAY | Instant[] | A zero length array of instants. |
| FUNCTION | addCalendar | void(BusinessCalendar) | Adds a calendar to the collection. |
| FUNCTION | addCalendarFromFile | void(File) | Adds a calendar to the collection from a file. |
| FUNCTION | addCalendarFromFile | void(String) | Adds a calendar to the collection from a file. |
| FUNCTION | atMidnight | Instant(Instant, ZoneId) | Returns an Instant for the prior midnight in the specified time zone. |
| FUNCTION | atMidnight | ZonedDateTime(LocalDate, ZoneId) | Returns a ZonedDateTime for the prior midnight in the specified time zone. |
| FUNCTION | atMidnight | ZonedDateTime(LocalDateTime, ZoneId) | Returns a ZonedDateTime for the prior midnight in the specified time zone. |
| FUNCTION | atMidnight | ZonedDateTime(ZonedDateTime) | Returns a ZonedDateTime for the prior midnight in the specified time zone. |
| FUNCTION | businessDates | LocalDate[](Instant, Instant) | Returns the business dates in a given range. |
| FUNCTION | businessDates | LocalDate[](Instant, Instant, boolean, boolean) | Returns the business dates in a given range. |
| FUNCTION | businessDates | LocalDate[](LocalDate, LocalDate) | Returns the business dates in a given range. |
| FUNCTION | businessDates | LocalDate[](LocalDate, LocalDate, boolean, boolean) | Returns the business dates in a given range. |
| FUNCTION | businessDates | LocalDate[](ZonedDateTime, ZonedDateTime) | Returns the business dates in a given range. |
| FUNCTION | businessDates | LocalDate[](ZonedDateTime, ZonedDateTime, boolean, boolean) | Returns the business dates in a given range. |
| FUNCTION | businessDates | String[](String, String) | Returns the business dates in a given range. |
| FUNCTION | businessDates | String[](String, String, boolean, boolean) | Returns the business dates in a given range. |
| FUNCTION | calendar | BusinessCalendar() | Returns the default business calendar. |
| FUNCTION | calendar | BusinessCalendar(String) | Returns a business calendar. |
| FUNCTION | calendarDate | LocalDate() | The current date for the calendar. |
| FUNCTION | calendarDates | LocalDate[](Instant, Instant) | Returns the dates in a given range. |
| FUNCTION | calendarDates | LocalDate[](Instant, Instant, boolean, boolean) | Returns the dates in a given range. |
| FUNCTION | calendarDates | LocalDate[](LocalDate, LocalDate) | Returns the dates in a given range. |
| FUNCTION | calendarDates | LocalDate[](LocalDate, LocalDate, boolean, boolean) | Returns the dates in a given range. |
| FUNCTION | calendarDates | LocalDate[](ZonedDateTime, ZonedDateTime) | Returns the dates in a given range. |
| FUNCTION | calendarDates | LocalDate[](ZonedDateTime, ZonedDateTime, boolean, boolean) | Returns the dates in a given range. |
| FUNCTION | calendarDates | String[](String, String) | Returns the dates in a given range. |
| FUNCTION | calendarDates | String[](String, String, boolean, boolean) | Returns the dates in a given range. |
| FUNCTION | calendarDay | CalendarDay() | Returns the CalendarDay for a date. |
| FUNCTION | calendarDay | CalendarDay(Instant) | Returns the CalendarDay for a date. |
| FUNCTION | calendarDay | CalendarDay(LocalDate) | Returns the CalendarDay for a date. |
| FUNCTION | calendarDay | CalendarDay(String) | Returns the CalendarDay for a date. |
| FUNCTION | calendarDay | CalendarDay(ZonedDateTime) | Returns the CalendarDay for a date. |
| FUNCTION | calendarDayOfWeek | DayOfWeek() | The current day of the week for the calendar. |
| FUNCTION | calendarDayOfWeek | DayOfWeek(Instant) | The current day of the week for the calendar. |
| FUNCTION | calendarDayOfWeek | DayOfWeek(LocalDate) | The current day of the week for the calendar. |
| FUNCTION | calendarDayOfWeek | DayOfWeek(String) | The current day of the week for the calendar. |
| FUNCTION | calendarDayOfWeek | DayOfWeek(ZonedDateTime) | The current day of the week for the calendar. |
| FUNCTION | calendarDayOfWeekValue | int() | Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S... |
| FUNCTION | calendarDayOfWeekValue | int(Instant) | Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S... |
| FUNCTION | calendarDayOfWeekValue | int(LocalDate) | Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S... |
| FUNCTION | calendarDayOfWeekValue | int(String) | Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S... |
| FUNCTION | calendarDayOfWeekValue | int(ZonedDateTime) | Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S... |
| FUNCTION | calendarName | String() | Returns the name of the default business calendar. |
| FUNCTION | calendarNames | String[]() | Returns the names of all available calendars. |
| FUNCTION | calendarTimeZone | ZoneId() | Gets the timezone of the calendar. |
| FUNCTION | calendarsFromConfiguration | List() | Loads the line-separated calendar XML resources from the resource file configuration value "Cale... |
| FUNCTION | currentClock | Clock() | Returns the clock used to compute the current time. This may be the current system clock, or it m... |
| FUNCTION | dayOfMonth | int(Instant, ZoneId) | Returns a 1-based int value of the day of the month for an Instant and specified time zone. The f... |
| FUNCTION | dayOfMonth | int(LocalDate) | Returns a 1-based int value of the day of the month for a LocalDate. The first day of the month r... |
| FUNCTION | dayOfMonth | int(LocalDateTime) | Returns a 1-based int value of the day of the month for a LocalDateTime. The first day of the mon... |
| FUNCTION | dayOfMonth | int(ZonedDateTime) | Returns a 1-based int value of the day of the month for a ZonedDateTime and specified time zone. ... |
| FUNCTION | dayOfWeek | DayOfWeek(Instant, ZoneId) | Returns the day of the week for an Instant in the specified time zone. |
| FUNCTION | dayOfWeek | DayOfWeek(LocalDate) | Returns the day of the week for a LocalDate. |
| FUNCTION | dayOfWeek | DayOfWeek(LocalDateTime) | Returns athe day of the week for a ZonedDateTime. |
| FUNCTION | dayOfWeek | DayOfWeek(ZonedDateTime) | Returns the day of the week for a ZonedDateTime in the specified time zone. |
| FUNCTION | dayOfWeekValue | int(Instant, ZoneId) | Returns a 1-based int value of the day of the week for an Instant in the specified time zone, wit... |
| FUNCTION | dayOfWeekValue | int(LocalDate) | Returns a 1-based int value of the day of the week for a LocalDate, with 1 being Monday and 7 bei... |
| FUNCTION | dayOfWeekValue | int(LocalDateTime) | Returns a 1-based int value of the day of the week for a LocalDateTime, with 1 being Monday and 7... |
| FUNCTION | dayOfWeekValue | int(ZonedDateTime) | Returns a 1-based int value of the day of the week for a ZonedDateTime in the specified time zone... |
| FUNCTION | dayOfYear | int(Instant, ZoneId) | Returns a 1-based int value of the day of the year (Julian date) for an Instant in the specified ... |
| FUNCTION | dayOfYear | int(LocalDate) | Returns a 1-based int value of the day of the year (Julian date) for a LocalDate. The first day o... |
| FUNCTION | dayOfYear | int(LocalDateTime) | Returns a 1-based int value of the day of the year (Julian date) for a LocalDateTime. The first d... |
| FUNCTION | dayOfYear | int(ZonedDateTime) | Returns a 1-based int value of the day of the year (Julian date) for a ZonedDateTime in the speci... |
| FUNCTION | diffBusinessDays | double(Instant, Instant) | Returns the amount of business time in standard business days between two times. |
| FUNCTION | diffBusinessDays | double(ZonedDateTime, ZonedDateTime) | Returns the amount of business time in standard business days between two times. |
| FUNCTION | diffBusinessDuration | Duration(Instant, Instant) | Returns the amount of business time between two times. |
| FUNCTION | diffBusinessDuration | Duration(ZonedDateTime, ZonedDateTime) | Returns the amount of business time between two times. |
| FUNCTION | diffBusinessNanos | long(Instant, Instant) | Returns the amount of business time in nanoseconds between two times. |
| FUNCTION | diffBusinessNanos | long(ZonedDateTime, ZonedDateTime) | Returns the amount of business time in nanoseconds between two times. |
| FUNCTION | diffBusinessYears | double(Instant, Instant) | Returns the number of business years between start and end. |
| FUNCTION | diffBusinessYears | double(ZonedDateTime, ZonedDateTime) | Returns the number of business years between start and end. |
| FUNCTION | diffDays | double(Instant, Instant) | Returns the difference in days between two instant values. |
| FUNCTION | diffDays | double(ZonedDateTime, ZonedDateTime) | Returns the difference in days between two zoned date time values. |
| FUNCTION | diffMicros | long(Instant, Instant) | Returns the difference in microseconds between two instant values. |
| FUNCTION | diffMicros | long(ZonedDateTime, ZonedDateTime) | Returns the difference in microseconds between two zoned date time values. |
| FUNCTION | diffMillis | long(Instant, Instant) | Returns the difference in milliseconds between two instant values. |
| FUNCTION | diffMillis | long(ZonedDateTime, ZonedDateTime) | Returns the difference in milliseconds between two zoned date time values. |
| FUNCTION | diffMinutes | double(Instant, Instant) | Returns the difference in minutes between two instant values. |
| FUNCTION | diffMinutes | double(ZonedDateTime, ZonedDateTime) | Returns the difference in minutes between two zoned date time values. |
| FUNCTION | diffNanos | long(Instant, Instant) | Returns the difference in nanoseconds between two instant values. |
| FUNCTION | diffNanos | long(ZonedDateTime, ZonedDateTime) | Returns the difference in nanoseconds between two zoned date time values. |
| FUNCTION | diffNonBusinessDuration | Duration(Instant, Instant) | Returns the amount of non-business time between two times. |
| FUNCTION | diffNonBusinessDuration | Duration(ZonedDateTime, ZonedDateTime) | Returns the amount of non-business time between two times. |
| FUNCTION | diffNonBusinessNanos | long(Instant, Instant) | Returns the amount of non-business time in nanoseconds between two times. |
| FUNCTION | diffNonBusinessNanos | long(ZonedDateTime, ZonedDateTime) | Returns the amount of non-business time in nanoseconds between two times. |
| FUNCTION | diffSeconds | double(Instant, Instant) | Returns the difference in seconds between two instant values. |
| FUNCTION | diffSeconds | double(ZonedDateTime, ZonedDateTime) | Returns the difference in seconds between two zoned date time values. |
| FUNCTION | diffYears365 | double(Instant, Instant) | Returns the difference in years between two instant values. Years are defined in terms of 365 ... |
| FUNCTION | diffYears365 | double(ZonedDateTime, ZonedDateTime) | Returns the difference in years between two zoned date time values. Years are defined in terms... |
| FUNCTION | diffYearsAvg | double(Instant, Instant) | Returns the difference in years between two instant values. Years are defined in terms of 365.... |
| FUNCTION | diffYearsAvg | double(ZonedDateTime, ZonedDateTime) | Returns the difference in years between two zoned date time values. Years are defined in terms... |
| FUNCTION | divide | Duration(Duration, long) | Divide a duration by a scalar. |
| FUNCTION | epochAutoToEpochNanos | long(long) | Converts an offset from the Epoch to a nanoseconds from the Epoch. The offset can be in milliseco... |
| FUNCTION | epochAutoToInstant | Instant(long) | Converts an offset from the Epoch to an Instant. The offset can be in milliseconds, microseconds,... |
| FUNCTION | epochAutoToZonedDateTime | ZonedDateTime(long, ZoneId) | Converts an offset from the Epoch to a ZonedDateTime. The offset can be in milliseconds, microsec... |
| FUNCTION | epochDays | long(LocalDate) | Returns number of days from the Epoch for a LocalDate value. |
| FUNCTION | epochDaysAsInt | int(LocalDate) | Returns number of days (as an int) from the Epoch for a LocalDate value. |
| FUNCTION | epochDaysAsIntToLocalDate | LocalDate(int) | Converts days from the Epoch (stored as int) to a LocalDate. |
| FUNCTION | epochDaysToLocalDate | LocalDate(long) | Converts days from the Epoch to a LocalDate. |
| FUNCTION | epochMicros | long(Instant) | Returns microseconds from the Epoch for an Instant value. |
| FUNCTION | epochMicros | long(ZonedDateTime) | Returns microseconds from the Epoch for a ZonedDateTime value. |
| FUNCTION | epochMicrosToInstant | Instant(long) | Converts microseconds from the Epoch to an Instant. |
| FUNCTION | epochMicrosToZonedDateTime | ZonedDateTime(long, ZoneId) | Converts microseconds from the Epoch to a ZonedDateTime. |
| FUNCTION | epochMillis | long(Instant) | Returns milliseconds from the Epoch for an Instant value. |
| FUNCTION | epochMillis | long(ZonedDateTime) | Returns milliseconds from the Epoch for a ZonedDateTime value. |
| FUNCTION | epochMillisToInstant | Instant(long) | Converts milliseconds from the Epoch to an Instant. |
| FUNCTION | epochMillisToZonedDateTime | ZonedDateTime(long, ZoneId) | Converts milliseconds from the Epoch to a ZonedDateTime. |
| FUNCTION | epochNanos | long(Instant) | Returns nanoseconds from the Epoch for an Instant value. |
| FUNCTION | epochNanos | long(ZonedDateTime) | Returns nanoseconds from the Epoch for a ZonedDateTime value. |
| FUNCTION | epochNanosToInstant | Instant(long) | Converts nanoseconds from the Epoch to an Instant. |
| FUNCTION | epochNanosToZonedDateTime | ZonedDateTime(long, ZoneId) | Converts nanoseconds from the Epoch to a ZonedDateTime. |
| FUNCTION | epochSeconds | long(Instant) | Returns seconds since from the Epoch for an Instant value. |
| FUNCTION | epochSeconds | long(ZonedDateTime) | Returns seconds since from the Epoch for a ZonedDateTime value. |
| FUNCTION | epochSecondsToInstant | Instant(long) | Converts seconds from the Epoch to an Instant. |
| FUNCTION | epochSecondsToZonedDateTime | ZonedDateTime(long, ZoneId) | Converts seconds from the Epoch to a ZonedDateTime. |
| FUNCTION | excelToInstant | Instant(double, ZoneId) | Converts an Excel time represented as a double to an Instant. |
| FUNCTION | excelToZonedDateTime | ZonedDateTime(double, ZoneId) | Converts an Excel time represented as a double to a ZonedDateTime. |
| FUNCTION | formatDate | String(Instant, ZoneId) | Returns an Instant formatted as a "yyyy-MM-dd" string. |
| FUNCTION | formatDate | String(LocalDate) | Returns a LocalDate formatted as a "yyyy-MM-dd" string. |
| FUNCTION | formatDate | String(LocalDateTime) | Returns a LocalDateTime formatted as a "yyyy-MM-dd" string. |
| FUNCTION | formatDate | String(ZonedDateTime) | Returns a ZonedDateTime formatted as a "yyyy-MM-dd" string. |
| FUNCTION | formatDateTime | String(Instant, ZoneId) | Returns an Instant formatted as a "yyyy-MM-ddThh:mm:ss.SSSSSSSSS TZ" string. |
| FUNCTION | formatDateTime | String(ZonedDateTime) | Returns a ZonedDateTime formatted as a "yyyy-MM-ddThh:mm:ss.SSSSSSSSS TZ" string. |
| FUNCTION | formatDurationNanos | String(long) | Returns a nanosecond duration formatted as a "[-]PThhh:mm:ss.nnnnnnnnn" string. |
| FUNCTION | fractionBusinessDayComplete | double() | Fraction of the current business day complete. |
| FUNCTION | fractionBusinessDayComplete | double(Instant) | Fraction of the business day complete. |
| FUNCTION | fractionBusinessDayComplete | double(ZonedDateTime) | Fraction of the business day complete. |
| FUNCTION | fractionBusinessDayRemaining | double() | Fraction of the business day remaining. |
| FUNCTION | fractionBusinessDayRemaining | double(Instant) | Fraction of the business day remaining. |
| FUNCTION | fractionBusinessDayRemaining | double(ZonedDateTime) | Fraction of the business day remaining. |
| FUNCTION | fractionStandardBusinessDay | double() | Returns the ratio of the business day length and the standard business day length. For example, a... |
| FUNCTION | fractionStandardBusinessDay | double(Instant) | Returns the ratio of the business day length and the standard business day length. For example, a... |
| FUNCTION | fractionStandardBusinessDay | double(LocalDate) | Returns the ratio of the business day length and the standard business day length. For example, a... |
| FUNCTION | fractionStandardBusinessDay | double(String) | Returns the ratio of the business day length and the standard business day length. For example, a... |
| FUNCTION | fractionStandardBusinessDay | double(ZonedDateTime) | Returns the ratio of the business day length and the standard business day length. For example, a... |
| FUNCTION | futureBusinessDate | LocalDate(int) | Adds a specified number of business days to the current date. Adding negative days is equivalent ... |
| FUNCTION | futureDate | LocalDate(int) | Adds a specified number of days to the current date. Adding negative days is equivalent to subtra... |
| FUNCTION | futureNonBusinessDate | LocalDate(int) | Adds a specified number of non-business days to the current date. Adding negative days is equival... |
| FUNCTION | holidays | Map() | Business day schedules for all holidays. A holiday is a date that has a schedule that is differen... |
| FUNCTION | hourOfDay | int(Instant, ZoneId, boolean) | Returns the number of hours that have elapsed since the start of the day. |
| FUNCTION | hourOfDay | int(LocalDateTime) | Returns the number of hours that have elapsed since the start of the day. |
| FUNCTION | hourOfDay | int(LocalTime) | Returns the number of hours that have elapsed since the start of the day. |
| FUNCTION | hourOfDay | int(ZonedDateTime, boolean) | Returns the number of hours that have elapsed since the start of the day. |
| FUNCTION | isAfter | boolean(Instant, Instant) | Evaluates whether one instant value is after a second instant value. |
| FUNCTION | isAfter | boolean(ZonedDateTime, ZonedDateTime) | Evaluates whether one zoned date time value is after a second zoned date time value. |
| FUNCTION | isAfterOrEqual | boolean(Instant, Instant) | Evaluates whether one instant value is after or equal to a second instant value. |
| FUNCTION | isAfterOrEqual | boolean(ZonedDateTime, ZonedDateTime) | Evaluates whether one zoned date time value is after or equal to a second zoned date time value. |
| FUNCTION | isBefore | boolean(Instant, Instant) | Evaluates whether one instant value is before a second instant value. |
| FUNCTION | isBefore | boolean(ZonedDateTime, ZonedDateTime) | Evaluates whether one zoned date time value is before a second zoned date time value. |
| FUNCTION | isBeforeOrEqual | boolean(Instant, Instant) | Evaluates whether one instant value is before or equal to a second instant value. |
| FUNCTION | isBeforeOrEqual | boolean(ZonedDateTime, ZonedDateTime) | Evaluates whether one zoned date time value is before or equal to a second zoned date time value. |
| FUNCTION | isBusinessDay | boolean() | Is the current day a business day? As long as the current time occurs on a business day, it is co... |
| FUNCTION | isBusinessDay | boolean(DayOfWeek) | Is the day of the week a normal business day?. |
| FUNCTION | isBusinessDay | boolean(Instant) | Is the time on a business day? As long as the time occurs on a business day, it is considered ... |
| FUNCTION | isBusinessDay | boolean(LocalDate) | Is the date a business day?. |
| FUNCTION | isBusinessDay | boolean(String) | Is the date a business day?. |
| FUNCTION | isBusinessDay | boolean(ZonedDateTime) | Is the time on a business day? As long as the time occurs on a business day, it is considered ... |
| FUNCTION | isBusinessTime | boolean() | Determines if the current time according to the Deephaven system clock is a business time. Busine... |
| FUNCTION | isBusinessTime | boolean(Instant) | Determines if the specified time is a business time. Business times fall within business time ran... |
| FUNCTION | isBusinessTime | boolean(ZonedDateTime) | Determines if the specified time is a business time. Business times fall within business time ran... |
| FUNCTION | isLastBusinessDayOfMonth | boolean() | Is the current date the last business day of the month?. |
| FUNCTION | isLastBusinessDayOfMonth | boolean(Instant) | Is the time on the last business day of the month? As long as the time occurs on a business da... |
| FUNCTION | isLastBusinessDayOfMonth | boolean(String) | Is the date the last business day of the month?. |
| FUNCTION | isLastBusinessDayOfMonth | boolean(ZonedDateTime) | Is the time on the last business day of the month? As long as the time occurs on a business da... |
| FUNCTION | isLastBusinessDayOfWeek | boolean() | Is the current date the last business day of the week?. |
| FUNCTION | isLastBusinessDayOfWeek | boolean(Instant) | Is the time on the last business day of the week? As long as the time occurs on a business day... |
| FUNCTION | isLastBusinessDayOfWeek | boolean(LocalDate) | Is the date the last business day of the week?. |
| FUNCTION | isLastBusinessDayOfWeek | boolean(String) | Is the date is last business day of the week?. |
| FUNCTION | isLastBusinessDayOfWeek | boolean(ZonedDateTime) | Is the time on the last business day of the week? As long as the time occurs on a business day... |
| FUNCTION | isLastBusinessDayOfYear | boolean() | Is the current date the last business day of the year? As long as the current time occurs on a... |
| FUNCTION | isLastBusinessDayOfYear | boolean(Instant) | Is the time on the last business day of the year? As long as the time occurs on a business day... |
| FUNCTION | isLastBusinessDayOfYear | boolean(ZonedDateTime) | Is the time on the last business day of the year? As long as the time occurs on a business day... |
| FUNCTION | lowerBin | Instant(Instant, Duration) | Returns an Instant value, which is at the starting (lower) end of a time range defined by the int... |
| FUNCTION | lowerBin | Instant(Instant, Duration, Duration) | Returns an Instant value, which is at the starting (lower) end of a time range defined by the int... |
| FUNCTION | lowerBin | Instant(Instant, long) | Returns an Instant value, which is at the starting (lower) end of a time range defined by the int... |
| FUNCTION | lowerBin | Instant(Instant, long, long) | Returns an Instant value, which is at the starting (lower) end of a time range defined by the int... |
| FUNCTION | lowerBin | ZonedDateTime(ZonedDateTime, Duration) | Returns a ZonedDateTime value, which is at the starting (lower) end of a time range defined by th... |
| FUNCTION | lowerBin | ZonedDateTime(ZonedDateTime, Duration, Duration) | Returns a ZonedDateTime value, which is at the starting (lower) end of a time range defined by th... |
| FUNCTION | lowerBin | ZonedDateTime(ZonedDateTime, long) | Returns a ZonedDateTime value, which is at the starting (lower) end of a time range defined by th... |
| FUNCTION | lowerBin | ZonedDateTime(ZonedDateTime, long, long) | Returns a ZonedDateTime value, which is at the starting (lower) end of a time range defined by th... |
| FUNCTION | microsOfDayToLocalTime | LocalTime(long) | Converts the number of microseconds from midnight to a LocalTime. |
| FUNCTION | microsOfMilli | int(Instant) | Returns the number of microseconds that have elapsed since the top of the millisecond. Nanosecond... |
| FUNCTION | microsOfMilli | int(ZonedDateTime) | Returns the number of microseconds that have elapsed since the top of the millisecond. Nanosecond... |
| FUNCTION | microsOfSecond | long(Instant, ZoneId) | Returns the number of microseconds that have elapsed since the top of the second. |
| FUNCTION | microsOfSecond | long(ZonedDateTime) | Returns the number of microseconds that have elapsed since the top of the second. |
| FUNCTION | microsToMillis | long(long) | Converts microseconds to milliseconds. |
| FUNCTION | microsToNanos | long(long) | Converts microseconds to nanoseconds. |
| FUNCTION | microsToSeconds | long(long) | Converts microseconds to seconds. |
| FUNCTION | millisOfDay | int(Instant, ZoneId, boolean) | Returns the number of milliseconds that have elapsed since the start of the day. |
| FUNCTION | millisOfDay | int(LocalDateTime) | Returns the number of milliseconds that have elapsed since the start of the day. |
| FUNCTION | millisOfDay | int(LocalTime) | Returns the number of milliseconds that have elapsed since the start of the day. |
| FUNCTION | millisOfDay | int(ZonedDateTime, boolean) | Returns the number of milliseconds that have elapsed since the start of the day. |
| FUNCTION | millisOfDayToLocalTime | LocalTime(int) | Converts the number of milliseconds from midnight to a LocalTime. |
| FUNCTION | millisOfSecond | int(Instant, ZoneId) | Returns the number of milliseconds that have elapsed since the top of the second. |
| FUNCTION | millisOfSecond | int(ZonedDateTime) | Returns the number of milliseconds that have elapsed since the top of the second. |
| FUNCTION | millisToMicros | long(long) | Converts milliseconds to microseconds. |
| FUNCTION | millisToNanos | long(long) | Converts milliseconds to nanoseconds. |
| FUNCTION | millisToSeconds | long(long) | Converts milliseconds to seconds. |
| FUNCTION | minus | Duration(Duration, Duration) | Subtracts two durations. |
| FUNCTION | minus | Instant(Instant, Duration) | Subtracts a time period to an Instant. |
| FUNCTION | minus | Instant(Instant, Period) | Subtracts a time period to an Instant. |
| FUNCTION | minus | Instant(Instant, long) | Subtracts nanoseconds from an Instant. |
| FUNCTION | minus | LocalDate(LocalDate, Period) | Subtracts a time period from a LocalDate. |
| FUNCTION | minus | LocalDateTime(LocalDateTime, Period) | Subtracts a time period from a LocalDateTime. |
| FUNCTION | minus | Period(Period, Period) | Subtracts two periods. |
| FUNCTION | minus | ZonedDateTime(ZonedDateTime, Duration) | Subtracts a time period to a ZonedDateTime. |
| FUNCTION | minus | ZonedDateTime(ZonedDateTime, Period) | Subtracts a time period to a ZonedDateTime. |
| FUNCTION | minus | ZonedDateTime(ZonedDateTime, long) | Subtracts nanoseconds from a ZonedDateTime. |
| FUNCTION | minus | long(Instant, Instant) | Subtract one instant from another and return the difference in nanoseconds. |
| FUNCTION | minus | long(ZonedDateTime, ZonedDateTime) | Subtract one zoned date time from another and return the difference in nanoseconds. |
| FUNCTION | minusBusinessDays | Instant(Instant, int) | Subtracts a specified number of business days from an input time. Subtracting negative days is eq... |
| FUNCTION | minusBusinessDays | LocalDate(LocalDate, int) | Subtracts a specified number of business days from an input date. Subtracting negative days is eq... |
| FUNCTION | minusBusinessDays | String(String, int) | Subtracts a specified number of business days from an input date. Subtracting negative days is eq... |
| FUNCTION | minusBusinessDays | ZonedDateTime(ZonedDateTime, int) | Subtracts a specified number of business days from an input time. Subtracting negative days is eq... |
| FUNCTION | minusDays | Instant(Instant, int) | Subtracts a specified number of days to an input time. Subtracting negative days is equivalent to... |
| FUNCTION | minusDays | LocalDate(LocalDate, int) | Subtracts a specified number of days to an input date. Subtracting negative days is equivalent to... |
| FUNCTION | minusDays | LocalDate(LocalDate, long) | Subtracts days from a LocalDate. |
| FUNCTION | minusDays | LocalDateTime(LocalDateTime, long) | Subtracts days from a LocalDate. |
| FUNCTION | minusDays | String(String, int) | Subtracts a specified number of days to an input date. Subtracting negative days is equivalent to... |
| FUNCTION | minusDays | ZonedDateTime(ZonedDateTime, int) | Subtracts a specified number of days to an input time. Subtracting negative days is equivalent to... |
| FUNCTION | minusNonBusinessDays | Instant(Instant, int) | Subtracts a specified number of non-business days to an input time. Subtracting negative days is ... |
| FUNCTION | minusNonBusinessDays | LocalDate(LocalDate, int) | Subtracts a specified number of non-business days to an input date. Subtracting negative days is ... |
| FUNCTION | minusNonBusinessDays | String(String, int) | Subtracts a specified number of non-business days to an input date. Subtracting negative days is ... |
| FUNCTION | minusNonBusinessDays | ZonedDateTime(ZonedDateTime, int) | Subtracts a specified number of non-business days to an input time. Subtracting negative days is ... |
| FUNCTION | minuteOfDay | int(Instant, ZoneId, boolean) | Returns the number of minutes that have elapsed since the start of the day. |
| FUNCTION | minuteOfDay | int(LocalDateTime) | Returns the number of minutes that have elapsed since the start of the day. |
| FUNCTION | minuteOfDay | int(LocalTime) | Returns the number of minutes that have elapsed since the start of the day. |
| FUNCTION | minuteOfDay | int(ZonedDateTime, boolean) | Returns the number of minutes that have elapsed since the start of the day. |
| FUNCTION | minuteOfHour | int(Instant, ZoneId) | Returns the number of minutes that have elapsed since the top of the hour. |
| FUNCTION | minuteOfHour | int(ZonedDateTime) | Returns the number of minutes that have elapsed since the top of the hour. |
| FUNCTION | monthOfYear | int(Instant, ZoneId) | Returns a 1-based int value of the month of the year (Julian date) for an Instant in the specifie... |
| FUNCTION | monthOfYear | int(LocalDate) | Returns a 1-based int value of the month of the year (Julian date) for a LocalDate. January is 1,... |
| FUNCTION | monthOfYear | int(LocalDateTime) | Returns a 1-based int value of the month of the year (Julian date) for a LocalDateTime. January i... |
| FUNCTION | monthOfYear | int(ZonedDateTime) | Returns a 1-based int value of the month of the year (Julian date) for a ZonedDateTime in the spe... |
| FUNCTION | multiply | Duration(Duration, long) | Multiply a duration by a scalar. |
| FUNCTION | multiply | Duration(long, Duration) | Multiply a duration by a scalar. |
| FUNCTION | multiply | Period(Period, int) | Multiply a period by a scalar. |
| FUNCTION | multiply | Period(int, Period) | Multiply a period by a scalar. |
| FUNCTION | nanosOfDay | long(Instant, ZoneId, boolean) | Returns the number of nanoseconds that have elapsed since the start of the day. |
| FUNCTION | nanosOfDay | long(LocalDateTime) | Returns the number of nanoseconds that have elapsed since the start of the day. |
| FUNCTION | nanosOfDay | long(LocalTime) | Returns the number of nanoseconds that have elapsed since the start of the day. |
| FUNCTION | nanosOfDay | long(ZonedDateTime, boolean) | Returns the number of nanoseconds that have elapsed since the start of the day. |
| FUNCTION | nanosOfDayToLocalTime | LocalTime(long) | Converts the number of nanoseconds from midnight to a LocalTime. |
| FUNCTION | nanosOfMilli | int(Instant) | Returns the number of nanoseconds that have elapsed since the top of the millisecond. |
| FUNCTION | nanosOfMilli | int(ZonedDateTime) | Returns the number of nanoseconds that have elapsed since the top of the millisecond. |
| FUNCTION | nanosOfSecond | long(Instant, ZoneId) | Returns the number of nanoseconds that have elapsed since the top of the second. |
| FUNCTION | nanosOfSecond | long(ZonedDateTime) | Returns the number of nanoseconds that have elapsed since the top of the second. |
| FUNCTION | nanosToMicros | long(long) | Converts nanoseconds to microseconds. |
| FUNCTION | nanosToMillis | long(long) | Converts nanoseconds to milliseconds. |
| FUNCTION | nanosToSeconds | long(long) | Converts nanoseconds to seconds. |
| FUNCTION | nonBusinessDates | LocalDate[](Instant, Instant) | Returns the non-business dates in a given range. |
| FUNCTION | nonBusinessDates | LocalDate[](Instant, Instant, boolean, boolean) | Returns the non-business dates in a given range. |
| FUNCTION | nonBusinessDates | LocalDate[](LocalDate, LocalDate) | Returns the non-business dates in a given range. |
| FUNCTION | nonBusinessDates | LocalDate[](LocalDate, LocalDate, boolean, boolean) | Returns the non-business dates in a given range. |
| FUNCTION | nonBusinessDates | LocalDate[](ZonedDateTime, ZonedDateTime) | Returns the non-business dates in a given range. |
| FUNCTION | nonBusinessDates | LocalDate[](ZonedDateTime, ZonedDateTime, boolean, boolean) | Returns the non-business dates in a given range. |
| FUNCTION | nonBusinessDates | String[](String, String) | Returns the non-business dates in a given range. |
| FUNCTION | nonBusinessDates | String[](String, String, boolean, boolean) | Returns the non-business dates in a given range. |
| FUNCTION | now | Instant() | Provides the current instant with nanosecond resolution according to the current clock. Under mos... |
| FUNCTION | nowMillisResolution | Instant() | Provides the current instant with millisecond resolution according to the current clock. Under mo... |
| FUNCTION | nowSystem | Instant() | Provides the current instant with nanosecond resolution according to the system clock. Note that ... |
| FUNCTION | nowSystemMillisResolution | Instant() | Provides the current instant with millisecond resolution according to the system clock. Note that... |
| FUNCTION | numberBusinessDates | int(Instant, Instant) | Returns the number of business dates in a given range. |
| FUNCTION | numberBusinessDates | int(Instant, Instant, boolean, boolean) | Returns the number of business dates in a given range. |
| FUNCTION | numberBusinessDates | int(LocalDate, LocalDate) | Returns the number of business dates in a given range. |
| FUNCTION | numberBusinessDates | int(LocalDate, LocalDate, boolean, boolean) | Returns the number of business dates in a given range. |
| FUNCTION | numberBusinessDates | int(String, String) | Returns the number of business dates in a given range. |
| FUNCTION | numberBusinessDates | int(String, String, boolean, boolean) | Returns the number of business dates in a given range. |
| FUNCTION | numberBusinessDates | int(ZonedDateTime, ZonedDateTime) | Returns the number of business dates in a given range. |
| FUNCTION | numberBusinessDates | int(ZonedDateTime, ZonedDateTime, boolean, boolean) | Returns the number of business dates in a given range. |
| FUNCTION | numberCalendarDates | int(Instant, Instant) | Returns the number of dates in a given range. |
| FUNCTION | numberCalendarDates | int(Instant, Instant, boolean, boolean) | Returns the number of dates in a given range. |
| FUNCTION | numberCalendarDates | int(LocalDate, LocalDate) | Returns the number of dates in a given range. |
| FUNCTION | numberCalendarDates | int(LocalDate, LocalDate, boolean, boolean) | Returns the number of dates in a given range. |
| FUNCTION | numberCalendarDates | int(String, String) | Returns the number of dates in a given range. |
| FUNCTION | numberCalendarDates | int(String, String, boolean, boolean) | Returns the number of dates in a given range. |
| FUNCTION | numberCalendarDates | int(ZonedDateTime, ZonedDateTime) | Returns the number of dates in a given range. |
| FUNCTION | numberCalendarDates | int(ZonedDateTime, ZonedDateTime, boolean, boolean) | Returns the number of dates in a given range. |
| FUNCTION | numberNonBusinessDates | int(Instant, Instant) | Returns the number of non-business dates in a given range. |
| FUNCTION | numberNonBusinessDates | int(Instant, Instant, boolean, boolean) | Returns the number of non-business dates in a given range. |
| FUNCTION | numberNonBusinessDates | int(LocalDate, LocalDate) | Returns the number of non-business dates in a given range. |
| FUNCTION | numberNonBusinessDates | int(LocalDate, LocalDate, boolean, boolean) | Returns the number of non-business dates in a given range. |
| FUNCTION | numberNonBusinessDates | int(String, String) | Returns the number of non-business dates in a given range. |
| FUNCTION | numberNonBusinessDates | int(String, String, boolean, boolean) | Returns the number of non-business dates in a given range. |
| FUNCTION | numberNonBusinessDates | int(ZonedDateTime, ZonedDateTime) | Returns the number of non-business dates in a given range. |
| FUNCTION | numberNonBusinessDates | int(ZonedDateTime, ZonedDateTime, boolean, boolean) | Returns the number of non-business dates in a given range. |
| FUNCTION | parseDuration | Duration(String) | Parses the string argument as a duration, which is a unit of time in terms of clock time (24-hour... |
| FUNCTION | parseDurationNanos | long(String) | Parses the string argument as a time duration in nanoseconds. Time duration strings can be for... |
| FUNCTION | parseDurationNanosQuiet | long(String) | Parses the string argument as a time duration in nanoseconds. Time duration strings can be for... |
| FUNCTION | parseDurationQuiet | Duration(String) | Parses the string argument as a duration, which is a unit of time in terms of clock time (24-hour... |
| FUNCTION | parseEpochNanos | long(String) | Parses the string argument as nanoseconds since the Epoch. Date time strings are formatted acc... |
| FUNCTION | parseEpochNanosQuiet | long(String) | Parses the string argument as a nanoseconds since the Epoch. Date time strings are formatted a... |
| FUNCTION | parseInstant | Instant(String) | Parses the string argument as an Instant. Date time strings are formatted according to the ISO... |
| FUNCTION | parseInstantQuiet | Instant(String) | Parses the string argument as an Instant. Date time strings are formatted according to the ISO... |
| FUNCTION | parseLocalDate | LocalDate(String) | Parses the string argument as a local date, which is a date without a time or time zone. Date ... |
| FUNCTION | parseLocalDateQuiet | LocalDate(String) | Parses the string argument as a local date, which is a date without a time or time zone. Date ... |
| FUNCTION | parseLocalDateTime | LocalDateTime(String) | Parses the string argument as a LocalDateTime. Date time strings are formatted according to th... |
| FUNCTION | parseLocalDateTimeQuiet | LocalDateTime(String) | Parses the string argument as a LocalDateTime. Date time strings are formatted according to th... |
| FUNCTION | parseLocalTime | LocalTime(String) | Parses the string argument as a local time, which is the time that would be read from a clock and... |
| FUNCTION | parseLocalTimeQuiet | LocalTime(String) | Parses the string argument as a local time, which is the time that would be read from a clock and... |
| FUNCTION | parsePeriod | Period(String) | Parses the string argument as a period, which is a unit of time in terms of calendar time (days, ... |
| FUNCTION | parsePeriodQuiet | Period(String) | Parses the string argument as a period, which is a unit of time in terms of calendar time (days, ... |
| FUNCTION | parseTimePrecision | ChronoField(String) | Returns a ChronoField indicating the level of precision in a time, datetime, or period nanos stri... |
| FUNCTION | parseTimePrecisionQuiet | ChronoField(String) | Returns a ChronoField indicating the level of precision in a time or datetime string. |
| FUNCTION | parseTimeZone | ZoneId(String) | Parses the string argument as a time zone. |
| FUNCTION | parseTimeZoneQuiet | ZoneId(String) | Parses the string argument as a time zone. |
| FUNCTION | parseZonedDateTime | ZonedDateTime(String) | Parses the string argument as a ZonedDateTime. Date time strings are formatted according to th... |
| FUNCTION | parseZonedDateTimeQuiet | ZonedDateTime(String) | Parses the string argument as a ZonedDateTime. Date time strings are formatted according to th... |
| FUNCTION | pastBusinessDate | LocalDate(int) | Subtracts a specified number of business days from the current date. Subtracting negative days is... |
| FUNCTION | pastDate | LocalDate(int) | Subtracts a specified number of days from the current date. Subtracting negative days is equivale... |
| FUNCTION | pastNonBusinessDate | LocalDate(int) | Subtracts a specified number of non-business days to the current date. Subtracting negative days ... |
| FUNCTION | plus | Duration(Duration, Duration) | Adds two durations. |
| FUNCTION | plus | Instant(Instant, Duration) | Adds a time period to an Instant. |
| FUNCTION | plus | Instant(Instant, Period) | Adds a time period to an Instant. |
| FUNCTION | plus | Instant(Instant, long) | Adds nanoseconds to an Instant. |
| FUNCTION | plus | LocalDate(LocalDate, Period) | Adds a time period to a LocalDate. |
| FUNCTION | plus | LocalDateTime(LocalDateTime, Period) | Adds a time period to a LocalDateTime. |
| FUNCTION | plus | Period(Period, Period) | Adds two periods. |
| FUNCTION | plus | ZonedDateTime(ZonedDateTime, Duration) | Adds a time period to a ZonedDateTime. |
| FUNCTION | plus | ZonedDateTime(ZonedDateTime, Period) | Adds a time period to a ZonedDateTime. |
| FUNCTION | plus | ZonedDateTime(ZonedDateTime, long) | Adds nanoseconds to a ZonedDateTime. |
| FUNCTION | plusBusinessDays | Instant(Instant, int) | Adds a specified number of business days to an input time. Adding negative days is equivalent to ... |
| FUNCTION | plusBusinessDays | LocalDate(LocalDate, int) | Adds a specified number of business days to an input date. Adding negative days is equivalent to ... |
| FUNCTION | plusBusinessDays | String(String, int) | Adds a specified number of business days to an input date. Adding negative days is equivalent to ... |
| FUNCTION | plusBusinessDays | ZonedDateTime(ZonedDateTime, int) | Adds a specified number of business days to an input time. Adding negative days is equivalent to ... |
| FUNCTION | plusDays | Instant(Instant, int) | Adds a specified number of days to an input time. Adding negative days is equivalent to subtracti... |
| FUNCTION | plusDays | LocalDate(LocalDate, int) | Adds a specified number of days to an input date. Adding negative days is equivalent to subtracti... |
| FUNCTION | plusDays | LocalDate(LocalDate, long) | Adds days to a LocalDate. |
| FUNCTION | plusDays | LocalDateTime(LocalDateTime, long) | Adds days to a LocalDate. |
| FUNCTION | plusDays | String(String, int) | Adds a specified number of days to an input date. Adding negative days is equivalent to subtracti... |
| FUNCTION | plusDays | ZonedDateTime(ZonedDateTime, int) | Adds a specified number of days to an input time. Adding negative days is equivalent to subtracti... |
| FUNCTION | plusNonBusinessDays | Instant(Instant, int) | Adds a specified number of non-business days to an input time. Adding negative days is equivalent... |
| FUNCTION | plusNonBusinessDays | LocalDate(LocalDate, int) | Adds a specified number of non-business days to an input date. Adding negative days is equivalent... |
| FUNCTION | plusNonBusinessDays | String(String, int) | Adds a specified number of non-business days to an input date. Adding negative days is equivalent... |
| FUNCTION | plusNonBusinessDays | ZonedDateTime(ZonedDateTime, int) | Adds a specified number of non-business days to an input time. Adding negative days is equivalent... |
| FUNCTION | removeCalendar | void(String) | Removes a calendar from the collection. |
| FUNCTION | secondOfDay | int(Instant, ZoneId, boolean) | Returns the number of seconds that have elapsed since the start of the day. |
| FUNCTION | secondOfDay | int(LocalDateTime) | Returns the number of seconds that have elapsed since the start of the day. |
| FUNCTION | secondOfDay | int(LocalTime) | Returns the number of seconds that have elapsed since the start of the day. |
| FUNCTION | secondOfDay | int(ZonedDateTime, boolean) | Returns the number of seconds that have elapsed since the start of the day. |
| FUNCTION | secondOfMinute | int(Instant, ZoneId) | Returns the number of seconds that have elapsed since the top of the minute. |
| FUNCTION | secondOfMinute | int(ZonedDateTime) | Returns the number of seconds that have elapsed since the top of the minute. |
| FUNCTION | secondsToMicros | long(long) | Converts seconds to microseconds. |
| FUNCTION | secondsToMillis | long(long) | Converts seconds to milliseconds. |
| FUNCTION | secondsToNanos | long(long) | Converts seconds to nanoseconds. |
| FUNCTION | setCalendar | void(String) | Sets the default calendar by name. The calendar must already be present in the collection. |
| FUNCTION | setClock | void(Clock) | Set the clock used to compute the current time. This allows a custom clock to be used instead of ... |
| FUNCTION | standardBusinessDay | CalendarDay() | Business day schedule for a standard business day. |
| FUNCTION | standardBusinessDuration | Duration() | Length of a standard business day. |
| FUNCTION | standardBusinessNanos | long() | Length of a standard business day in nanoseconds. |
| FUNCTION | timeZone | ZoneId() | Gets the system default time zone. |
| FUNCTION | timeZone | ZoneId(String) | Gets the time zone for a time zone name. |
| FUNCTION | timeZoneAliasAdd | void(String, String) | Adds a new time zone alias. |
| FUNCTION | timeZoneAliasRm | boolean(String) | Removes a time zone alias. |
| FUNCTION | toDate | Date(Instant) | Converts an Instant to a Date. instant will be truncated to millisecond resolution. |
| FUNCTION | toDate | Date(ZonedDateTime) | Converts a ZonedDateTime to a Date. dateTime will be truncated to millisecond resolution. |
| FUNCTION | toExcelTime | double(Instant, ZoneId) | Converts an Instant to an Excel time represented as a double. |
| FUNCTION | toExcelTime | double(ZonedDateTime) | Converts a ZonedDateTime to an Excel time represented as a double. |
| FUNCTION | toInstant | Instant(Date) | Converts a Date to an Instant. |
| FUNCTION | toInstant | Instant(LocalDate, LocalTime, ZoneId) | Converts a LocalDate, LocalTime, and ZoneId to an Instant. |
| FUNCTION | toInstant | Instant(LocalDateTime, ZoneId) | Converts a LocalDateTime and ZoneId to an Instant. |
| FUNCTION | toInstant | Instant(ZonedDateTime) | Converts a ZonedDateTime to an Instant. |
| FUNCTION | toLocalDate | LocalDate(Instant, ZoneId) | Converts an Instant to a LocalDate with the specified ZoneId. |
| FUNCTION | toLocalDate | LocalDate(LocalDateTime) | Gets the LocalDate portion of a LocalDateTime. |
| FUNCTION | toLocalDate | LocalDate(ZonedDateTime) | Gets the LocalDate portion of a ZonedDateTime. |
| FUNCTION | toLocalDateTime | LocalDateTime(Instant, ZoneId) | Converts an Instant to a LocalDateTime with the specified ZoneId. |
| FUNCTION | toLocalDateTime | LocalDateTime(LocalDate, LocalTime) | Converts a LocalDate and LocalTime pair to a LocalDateTime. |
| FUNCTION | toLocalDateTime | LocalDateTime(ZonedDateTime) | Gets the LocalDateTime portion of a ZonedDateTime. |
| FUNCTION | toLocalTime | LocalTime(Instant, ZoneId) | Converts an Instant to a LocalTime with the specified ZoneId. |
| FUNCTION | toLocalTime | LocalTime(LocalDateTime) | Gets the LocalTime portion of a LocalDateTime. |
| FUNCTION | toLocalTime | LocalTime(ZonedDateTime) | Gets the LocalTime portion of a ZonedDateTime. |
| FUNCTION | toZonedDateTime | ZonedDateTime(Instant, ZoneId) | Converts an Instant to a ZonedDateTime. |
| FUNCTION | toZonedDateTime | ZonedDateTime(LocalDate, LocalTime, ZoneId) | Converts a LocalDate, LocalTime, and ZoneId to a ZonedDateTime. |
| FUNCTION | toZonedDateTime | ZonedDateTime(LocalDateTime, ZoneId) | Converts a LocalDateTime and ZoneId to a ZonedDateTime. |
| FUNCTION | today | String() | Provides the current date string according to the current clock and the default time zone. Under... |
| FUNCTION | today | String(ZoneId) | Provides the current date string according to the current clock. Under most circumstances, this ... |
| FUNCTION | todayLocalDate | LocalDate() | Provides the current date according to the current clock and the default time zone. Under most c... |
| FUNCTION | todayLocalDate | LocalDate(ZoneId) | Provides the current date according to the current clock. Under most circumstances, this method ... |
| FUNCTION | upperBin | Instant(Instant, Duration) | Returns an Instant value, which is at the ending (upper) end of a time range defined by the inter... |
| FUNCTION | upperBin | Instant(Instant, Duration, Duration) | Returns an Instant value, which is at the ending (upper) end of a time range defined by the inter... |
| FUNCTION | upperBin | Instant(Instant, long) | Returns an Instant value, which is at the ending (upper) end of a time range defined by the inter... |
| FUNCTION | upperBin | Instant(Instant, long, long) | Returns an Instant value, which is at the ending (upper) end of a time range defined by the inter... |
| FUNCTION | upperBin | ZonedDateTime(ZonedDateTime, Duration) | Returns a ZonedDateTime value, which is at the ending (upper) end of a time range defined by the ... |
| FUNCTION | upperBin | ZonedDateTime(ZonedDateTime, Duration, Duration) | Returns a ZonedDateTime value, which is at the ending (upper) end of a time range defined by the ... |
| FUNCTION | upperBin | ZonedDateTime(ZonedDateTime, long) | Returns a ZonedDateTime value, which is at the ending (upper) end of a time range defined by the ... |
| FUNCTION | upperBin | ZonedDateTime(ZonedDateTime, long, long) | Returns a ZonedDateTime value, which is at the ending (upper) end of a time range defined by the ... |
| FUNCTION | weekendDays | Set() | Returns the days that make up a weekend. |
| FUNCTION | year | int(Instant, ZoneId) | Returns the year for an Instant in the specified time zone. |
| FUNCTION | year | int(LocalDate) | Returns the year for a LocalDate. |
| FUNCTION | year | int(LocalDateTime) | Returns the year for a LocalDateTime. |
| FUNCTION | year | int(ZonedDateTime) | Returns the year for a ZonedDateTime in the specified time zone. |
| FUNCTION | yearOfCentury | int(Instant, ZoneId) | Returns the year of the century (two-digit year) for an Instant in the specified time zone. |
| FUNCTION | yearOfCentury | int(LocalDate) | Returns the year of the century (two-digit year) for a LocalDate. |
| FUNCTION | yearOfCentury | int(LocalDateTime) | Returns the year of the century (two-digit year) for a LocalDateTime. |
| FUNCTION | yearOfCentury | int(ZonedDateTime) | Returns the year of the century (two-digit year) for a ZonedDateTime in the specified time zone. |