Uses of Class
org.h2.api.Interval
Packages that use Interval
Package
Description
Contains interfaces for user-defined extensions, such as triggers and user-defined aggregate functions.
Data type and value implementations.
-
Uses of Interval in org.h2.api
Methods in org.h2.api that return IntervalModifier and TypeMethodDescriptionstatic Interval
Interval.ofDays
(long days) Creates a new INTERVAL DAY.static Interval
Interval.ofDaysHours
(long days, int hours) Creates a new INTERVAL DAY TO HOUR.static Interval
Interval.ofDaysHoursMinutes
(long days, int hours, int minutes) Creates a new INTERVAL DAY TO MINUTE.static Interval
Interval.ofDaysHoursMinutesNanos
(long days, int hours, int minutes, long nanos) Creates a new INTERVAL DAY TO SECOND.static Interval
Interval.ofDaysHoursMinutesSeconds
(long days, int hours, int minutes, int seconds) Creates a new INTERVAL DAY TO SECOND.static Interval
Interval.ofHours
(long hours) Creates a new INTERVAL HOUR.static Interval
Interval.ofHoursMinutes
(long hours, int minutes) Creates a new INTERVAL HOUR TO MINUTE.static Interval
Interval.ofHoursMinutesNanos
(long hours, int minutes, long nanos) Creates a new INTERVAL HOUR TO SECOND.static Interval
Interval.ofHoursMinutesSeconds
(long hours, int minutes, int seconds) Creates a new INTERVAL HOUR TO SECOND.static Interval
Interval.ofMinutes
(long minutes) Creates a new INTERVAL MINUTE.static Interval
Interval.ofMinutesNanos
(long minutes, long nanos) Creates a new INTERVAL MINUTE TO SECOND.static Interval
Interval.ofMinutesSeconds
(long minutes, int seconds) Creates a new INTERVAL MINUTE TO SECOND.static Interval
Interval.ofMonths
(long months) Creates a new INTERVAL MONTH.static Interval
Interval.ofNanos
(long nanos) Creates a new INTERVAL SECOND.static Interval
Interval.ofSeconds
(long seconds) Creates a new INTERVAL SECOND.static Interval
Interval.ofSeconds
(long seconds, int nanos) Creates a new INTERVAL SECOND.static Interval
Interval.ofYears
(long years) Creates a new INTERVAL YEAR.static Interval
Interval.ofYearsMonths
(long years, int months) Creates a new INTERVAL YEAR TO MONTH. -
Uses of Interval in org.h2.value
Methods in org.h2.value that return Interval