-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PeriodSpecificationall()Create a period specification for all timestamps.PeriodSpecificationasOf(Field<T> field)Create a period specification for a given timestamp.PeriodSpecificationasOf(T value)Create a period specification for a given timestamp.PeriodSpecificationBetweenAndStep<T>between(Field<T> start)Create a period specification for a given timestamp range overlapping with this period, including the end value.PeriodSpecificationbetween(Field<T> start, Field<T> end)Create a period specification for a given timestamp range overlapping with this period, including the end value.PeriodSpecificationBetweenAndStep<T>between(T start)Create a period specification for a given timestamp range overlapping with this period, including the end value.PeriodSpecificationbetween(T start, T end)Create a period specification for a given timestamp range overlapping with this period, including the end value.PeriodSpecificationcontainedIn(Field<T> start, Field<T> end)Create a period specification for a given timestamp range containing this period.PeriodSpecificationcontainedIn(T start, T end)Create a period specification for a given timestamp range containing this period.PeriodSpecificationFromToStep<T>from(Field<T> start)Create a period specification for a given timestamp range overlapping with this period, excluding the end value.PeriodSpecificationFromToStep<T>from(T start)Create a period specification for a given timestamp range overlapping with this period, excluding the end value.Field<T>getEnd()The expression specifying the end of the period.Field<T>getStart()The expression specifying the start of the period.-
Methods inherited from interface org.jooq.Named
getComment, getName, getQualifiedName, getUnqualifiedName
-
Methods inherited from interface org.jooq.Typed
getBinding, getConverter, getDataType, getDataType, getType
-
-
-
-
Method Detail
-
asOf
@Support({DB2,MARIADB_10_3,ORACLE12C,SQLSERVER2016}) PeriodSpecification asOf(T value)
Create a period specification for a given timestamp.
-
asOf
@Support({DB2,MARIADB_10_3,ORACLE12C,SQLSERVER2016}) PeriodSpecification asOf(Field<T> field)
Create a period specification for a given timestamp.
-
between
@Support({DB2,MARIADB_10_3,ORACLE12C,SQLSERVER2016}) PeriodSpecificationBetweenAndStep<T> between(T start)
Create a period specification for a given timestamp range overlapping with this period, including the end value.
-
between
@Support({DB2,MARIADB_10_3,ORACLE12C,SQLSERVER2016}) PeriodSpecificationBetweenAndStep<T> between(Field<T> start)
Create a period specification for a given timestamp range overlapping with this period, including the end value.
-
between
@Support({DB2,MARIADB_10_3,ORACLE12C,SQLSERVER2016}) PeriodSpecification between(T start, T end)
Create a period specification for a given timestamp range overlapping with this period, including the end value.
-
between
@Support({DB2,MARIADB_10_3,ORACLE12C,SQLSERVER2016}) PeriodSpecification between(Field<T> start, Field<T> end)
Create a period specification for a given timestamp range overlapping with this period, including the end value.
-
from
@Support({DB2,MARIADB_10_3,SQLSERVER2016}) PeriodSpecificationFromToStep<T> from(T start)
Create a period specification for a given timestamp range overlapping with this period, excluding the end value.
-
from
@Support({DB2,MARIADB_10_3,SQLSERVER2016}) PeriodSpecificationFromToStep<T> from(Field<T> start)
Create a period specification for a given timestamp range overlapping with this period, excluding the end value.
-
containedIn
@Support(SQLSERVER2016) PeriodSpecification containedIn(T start, T end)
Create a period specification for a given timestamp range containing this period.
-
containedIn
@Support(SQLSERVER2016) PeriodSpecification containedIn(Field<T> start, Field<T> end)
Create a period specification for a given timestamp range containing this period.
-
all
@Support({DB2,MARIADB_10_3,ORACLE12C,SQLSERVER2016}) PeriodSpecification all()
Create a period specification for all timestamps.
-
-