Uses of Class
org.jooq.types.DayToSecond
-
Packages that use DayToSecond Package Description org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes.org.jooq.types Theorg.jooq.tools.types
package contains data types that are missing in JDBC.org.jooq.util.aurorapostgres Theorg.jooq.util.ase
package contains classes related to theSQLDialect.AURORA_POSTGRES
dialect.org.jooq.util.firebird Theorg.jooq.util.ase
package contains classes related to theSQLDialect.FIREBIRD
dialect.org.jooq.util.hsqldb Theorg.jooq.util.ase
package contains classes related to theSQLDialect.HSQLDB
dialect.org.jooq.util.oracle Theorg.jooq.util.ase
package contains classes related to theSQLDialect.ORACLE
dialect.org.jooq.util.postgres Theorg.jooq.util.ase
package contains classes related to theSQLDialect.POSTGRES
dialect.org.jooq.util.redshift Theorg.jooq.util.ase
package contains classes related to theSQLDialect.REDSHIFT
dialect. -
-
Uses of DayToSecond in org.jooq.impl
Fields in org.jooq.impl with type parameters of type DayToSecond Modifier and Type Field Description static DataType<DayToSecond>
SQLDataType. INTERVALDAYTOSECOND
The SQL standardINTERVAL DAY TO SECOND
data type.Methods in org.jooq.impl that return types with arguments of type DayToSecond Modifier and Type Method Description static Field<DayToSecond>
DSL. localDateTimeDiff(java.time.LocalDateTime timestamp1, java.time.LocalDateTime timestamp2)
Get the timestamp difference as aINTERVAL DAY TO SECOND
type.static Field<DayToSecond>
DSL. localDateTimeDiff(java.time.LocalDateTime timestamp1, Field<java.time.LocalDateTime> timestamp2)
Get the timestamp difference as aINTERVAL DAY TO SECOND
type.static Field<DayToSecond>
DSL. localDateTimeDiff(Field<java.time.LocalDateTime> timestamp1, java.time.LocalDateTime timestamp2)
Get the timestamp difference as aINTERVAL DAY TO SECOND
type.static Field<DayToSecond>
DSL. localDateTimeDiff(Field<java.time.LocalDateTime> timestamp1, Field<java.time.LocalDateTime> timestamp2)
Get the timestamp difference as aINTERVAL DAY TO SECOND
type.static Field<DayToSecond>
DSL. timestampDiff(java.sql.Timestamp timestamp1, java.sql.Timestamp timestamp2)
Get the timestamp difference as aINTERVAL DAY TO SECOND
type.static Field<DayToSecond>
DSL. timestampDiff(java.sql.Timestamp timestamp1, Field<java.sql.Timestamp> timestamp2)
Get the timestamp difference as aINTERVAL DAY TO SECOND
type.static Field<DayToSecond>
DSL. timestampDiff(Field<java.sql.Timestamp> timestamp1, java.sql.Timestamp timestamp2)
Get the timestamp difference as aINTERVAL DAY TO SECOND
type.static Field<DayToSecond>
DSL. timestampDiff(Field<java.sql.Timestamp> timestamp1, Field<java.sql.Timestamp> timestamp2)
Get the timestamp difference as aINTERVAL DAY TO SECOND
type. -
Uses of DayToSecond in org.jooq.types
Methods in org.jooq.types that return DayToSecond Modifier and Type Method Description DayToSecond
DayToSecond. abs()
DayToSecond
YearToSecond. getDayToSecond()
DayToSecond
DayToSecond. neg()
static DayToSecond
DayToSecond. valueOf(double milli)
Load aDouble
representation of aINTERVAL DAY TO SECOND
by assuming standard 24 hour days and 60 second minutes.static DayToSecond
DayToSecond. valueOf(long second, int nanos)
Load aDouble
representation of aINTERVAL DAY TO SECOND
by assuming standard 24 hour days and 60 second minutes.static DayToSecond
DayToSecond. valueOf(java.lang.String string)
Parse a string representation of aINTERVAL DAY TO SECOND
static DayToSecond
DayToSecond. valueOf(java.time.Duration duration)
Transform aDuration
into aDayToSecond
interval by taking its number of milliseconds.Methods in org.jooq.types with parameters of type DayToSecond Modifier and Type Method Description int
DayToSecond. compareTo(DayToSecond that)
Constructors in org.jooq.types with parameters of type DayToSecond Constructor Description YearToSecond(YearToMonth yearToMonth, DayToSecond dayToSecond)
-
Uses of DayToSecond in org.jooq.util.aurorapostgres
Fields in org.jooq.util.aurorapostgres with type parameters of type DayToSecond Modifier and Type Field Description static DataType<DayToSecond>
AuroraPostgresDataType. INTERVALDAYTOSECOND
Deprecated. -
Uses of DayToSecond in org.jooq.util.firebird
Fields in org.jooq.util.firebird with type parameters of type DayToSecond Modifier and Type Field Description static DataType<DayToSecond>
FirebirdDataType. INTERVALDAYTOSECOND
Deprecated. -
Uses of DayToSecond in org.jooq.util.hsqldb
Fields in org.jooq.util.hsqldb with type parameters of type DayToSecond Modifier and Type Field Description static DataType<DayToSecond>
HSQLDBDataType. INTERVALDAYTOSECOND
Deprecated. -
Uses of DayToSecond in org.jooq.util.oracle
Fields in org.jooq.util.oracle with type parameters of type DayToSecond Modifier and Type Field Description static DataType<DayToSecond>
OracleDataType. INTERVALDAYTOSECOND
Deprecated. -
Uses of DayToSecond in org.jooq.util.postgres
Fields in org.jooq.util.postgres with type parameters of type DayToSecond Modifier and Type Field Description static DataType<DayToSecond>
PostgresDataType. INTERVALDAYTOSECOND
Deprecated.Methods in org.jooq.util.postgres that return DayToSecond Modifier and Type Method Description static DayToSecond
PostgresUtils. toDayToSecond(java.lang.Object pgInterval)
Convert a Postgres interval to a jOOQDAY TO SECOND
intervalMethods in org.jooq.util.postgres with parameters of type DayToSecond Modifier and Type Method Description static java.lang.Object
PostgresUtils. toPGInterval(DayToSecond interval)
Convert a jOOQDAY TO SECOND
interval to a Postgres representation -
Uses of DayToSecond in org.jooq.util.redshift
Fields in org.jooq.util.redshift with type parameters of type DayToSecond Modifier and Type Field Description static DataType<DayToSecond>
RedshiftDataType. INTERVALDAYTOSECOND
Deprecated.
-