Uses of Class
org.h2.value.ValueTimestampTimeZone
-
Packages that use ValueTimestampTimeZone Package Description org.h2.engine Contains high level classes of the database and classes that don't fit in another sub-package.org.h2.expression.function Functions.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.util Internal utility classes.org.h2.value Data type and value implementations. -
-
Uses of ValueTimestampTimeZone in org.h2.engine
Fields in org.h2.engine declared as ValueTimestampTimeZone Modifier and Type Field Description private ValueTimestampTimeZone
SessionLocal. currentTimestamp
private ValueTimestampTimeZone
SessionLocal. sessionStart
Methods in org.h2.engine that return ValueTimestampTimeZone Modifier and Type Method Description ValueTimestampTimeZone
CastDataProvider. currentTimestamp()
Returns the current timestamp with maximum resolution.ValueTimestampTimeZone
Database. currentTimestamp()
ValueTimestampTimeZone
SessionLocal. currentTimestamp()
ValueTimestampTimeZone
SessionRemote. currentTimestamp()
ValueTimestampTimeZone
SessionLocal. getCommandStartOrEnd()
ValueTimestampTimeZone
SessionLocal. getSessionStart()
-
Uses of ValueTimestampTimeZone in org.h2.expression.function
Methods in org.h2.expression.function that return ValueTimestampTimeZone Modifier and Type Method Description static ValueTimestampTimeZone
DateTimeFormatFunction. parseDateTime(SessionLocal session, java.lang.String date, java.lang.String format, java.lang.String locale, java.lang.String timeZone)
Parses a date using a format string. -
Uses of ValueTimestampTimeZone in org.h2.jdbc
Methods in org.h2.jdbc that return ValueTimestampTimeZone Modifier and Type Method Description ValueTimestampTimeZone
JdbcConnection. currentTimestamp()
-
Uses of ValueTimestampTimeZone in org.h2.mode
Methods in org.h2.mode that return ValueTimestampTimeZone Modifier and Type Method Description private ValueTimestampTimeZone
ToDateParser. getResultingValueWithTimeZone()
static ValueTimestampTimeZone
ToDateParser. toTimestampTz(SessionLocal session, java.lang.String input, java.lang.String format)
Parse a string as a timestamp with the given format. -
Uses of ValueTimestampTimeZone in org.h2.util
Methods in org.h2.util that return ValueTimestampTimeZone 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.static ValueTimestampTimeZone
JSR310Utils. instantToValue(java.time.Instant instant)
Converts a Instant to a Value.static ValueTimestampTimeZone
JSR310Utils. offsetDateTimeToValue(java.time.OffsetDateTime offsetDateTime)
Converts a OffsetDateTime to a Value.static ValueTimestampTimeZone
DateTimeUtils. timestampTimeZoneAtOffset(long dateValue, long timeNanos, int oldOffset, int newOffset)
Moves timestamp with time zone to a new time zone.static ValueTimestampTimeZone
JSR310Utils. zonedDateTimeToValue(java.time.ZonedDateTime zonedDateTime)
Converts a ZonedDateTime to a Value. -
Uses of ValueTimestampTimeZone in org.h2.value
Methods in org.h2.value that return ValueTimestampTimeZone Modifier and Type Method Description private ValueTimestampTimeZone
Value. convertToTimestampTimeZone(TypeInfo targetType, CastDataProvider provider, int conversionMode)
static ValueTimestampTimeZone
ValueTimestampTimeZone. fromDateValueAndNanos(long dateValue, long timeNanos, int timeZoneOffsetSeconds)
Get or create a date value for the given date.static ValueTimestampTimeZone
ValueTimestampTimeZone. parse(java.lang.String s, CastDataProvider provider)
Parse a string to a ValueTimestamp.
-