Uses of Class
org.h2.util.TimeZoneProvider
-
Packages that use TimeZoneProvider Package Description org.h2.command.dml Contains DML (data manipulation language) and related SQL statements.org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.jdbc Implementation of the JDBC API (package java.sql).org.h2.mode Utility classes for compatibility with other database, for example MySQL.org.h2.server.pg PostgreSQL server implementation of this database.org.h2.util Internal utility classes. -
-
Uses of TimeZoneProvider in org.h2.command.dml
Methods in org.h2.command.dml that return TimeZoneProvider Modifier and Type Method Description private static TimeZoneProvider
Set. parseTimeZone(Value v)
-
Uses of TimeZoneProvider in org.h2.engine
Fields in org.h2.engine declared as TimeZoneProvider Modifier and Type Field Description private TimeZoneProvider
ConnectionInfo. timeZone
TimeZoneProvider
Session.DynamicSettings. timeZone
The current time zone.private TimeZoneProvider
SessionLocal. timeZone
Methods in org.h2.engine that return TimeZoneProvider Modifier and Type Method Description TimeZoneProvider
CastDataProvider. currentTimeZone()
Returns the current time zone.TimeZoneProvider
Database. currentTimeZone()
TimeZoneProvider
SessionLocal. currentTimeZone()
TimeZoneProvider
SessionRemote. currentTimeZone()
TimeZoneProvider
ConnectionInfo. getTimeZone()
Returns the time zone.Methods in org.h2.engine with parameters of type TimeZoneProvider Modifier and Type Method Description void
SessionLocal. setTimeZone(TimeZoneProvider timeZone)
Sets current time zone.Constructors in org.h2.engine with parameters of type TimeZoneProvider Constructor Description DynamicSettings(Mode mode, TimeZoneProvider timeZone)
Creates new instance of dynamic settings. -
Uses of TimeZoneProvider in org.h2.jdbc
Methods in org.h2.jdbc that return TimeZoneProvider Modifier and Type Method Description TimeZoneProvider
JdbcConnection. currentTimeZone()
-
Uses of TimeZoneProvider in org.h2.mode
Fields in org.h2.mode declared as TimeZoneProvider Modifier and Type Field Description private TimeZoneProvider
ToDateParser. timeZone
Methods in org.h2.mode with parameters of type TimeZoneProvider Modifier and Type Method Description (package private) void
ToDateParser. setTimeZone(TimeZoneProvider timeZone)
-
Uses of TimeZoneProvider in org.h2.server.pg
Fields in org.h2.server.pg declared as TimeZoneProvider Modifier and Type Field Description private TimeZoneProvider
PgServerThread. timeZone
-
Uses of TimeZoneProvider in org.h2.util
Subclasses of TimeZoneProvider in org.h2.util Modifier and Type Class Description private static class
TimeZoneProvider.Simple
Time zone provider with offset.(package private) static class
TimeZoneProvider.WithTimeZone
Time zone provider with time zone.Fields in org.h2.util declared as TimeZoneProvider Modifier and Type Field Description static TimeZoneProvider[]
TimeZoneProvider. CACHE
A small cache for timezone providers.private static TimeZoneProvider
DateTimeUtils. LOCAL
static TimeZoneProvider
TimeZoneProvider. UTC
The UTC time zone provider.Methods in org.h2.util that return TimeZoneProvider Modifier and Type Method Description static TimeZoneProvider
TimeZoneProvider. getDefault()
Returns the time zone provider for the system default time zone.static TimeZoneProvider
DateTimeUtils. getTimeZone()
Get the time zone provider for the default time zone.static TimeZoneProvider
TimeZoneProvider. ofId(java.lang.String id)
Returns the time zone provider with the specified name.static TimeZoneProvider
TimeZoneProvider. ofOffset(int offset)
Returns the time zone provider with the specified offset.Methods in org.h2.util with parameters of type TimeZoneProvider Modifier and Type Method Description static ValueTimestampTimeZone
DateTimeUtils. currentTimestamp(TimeZoneProvider timeZone)
Returns current timestamp.static ValueTimestampTimeZone
DateTimeUtils. currentTimestamp(TimeZoneProvider timeZone, java.time.Instant now)
Returns current timestamp using the specified instant for its value.
-