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 IntervalInterval.ofDays(long days) Creates a new INTERVAL DAY.static IntervalInterval.ofDaysHours(long days, int hours) Creates a new INTERVAL DAY TO HOUR.static IntervalInterval.ofDaysHoursMinutes(long days, int hours, int minutes) Creates a new INTERVAL DAY TO MINUTE.static IntervalInterval.ofDaysHoursMinutesNanos(long days, int hours, int minutes, long nanos) Creates a new INTERVAL DAY TO SECOND.static IntervalInterval.ofDaysHoursMinutesSeconds(long days, int hours, int minutes, int seconds) Creates a new INTERVAL DAY TO SECOND.static IntervalInterval.ofHours(long hours) Creates a new INTERVAL HOUR.static IntervalInterval.ofHoursMinutes(long hours, int minutes) Creates a new INTERVAL HOUR TO MINUTE.static IntervalInterval.ofHoursMinutesNanos(long hours, int minutes, long nanos) Creates a new INTERVAL HOUR TO SECOND.static IntervalInterval.ofHoursMinutesSeconds(long hours, int minutes, int seconds) Creates a new INTERVAL HOUR TO SECOND.static IntervalInterval.ofMinutes(long minutes) Creates a new INTERVAL MINUTE.static IntervalInterval.ofMinutesNanos(long minutes, long nanos) Creates a new INTERVAL MINUTE TO SECOND.static IntervalInterval.ofMinutesSeconds(long minutes, int seconds) Creates a new INTERVAL MINUTE TO SECOND.static IntervalInterval.ofMonths(long months) Creates a new INTERVAL MONTH.static IntervalInterval.ofNanos(long nanos) Creates a new INTERVAL SECOND.static IntervalInterval.ofSeconds(long seconds) Creates a new INTERVAL SECOND.static IntervalInterval.ofSeconds(long seconds, int nanos) Creates a new INTERVAL SECOND.static IntervalInterval.ofYears(long years) Creates a new INTERVAL YEAR.static IntervalInterval.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