Uses of Class
org.h2.value.ValueTimestamp
-
Packages that use ValueTimestamp Package Description 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 ValueTimestamp in org.h2.mode
Methods in org.h2.mode that return ValueTimestamp Modifier and Type Method Description private ValueTimestampToDateParser. getResultingValue()static ValueTimestampToDateParser. toDate(SessionLocal session, java.lang.String input, java.lang.String format)Parse a string as a date with the given format.static ValueTimestampToDateParser. toTimestamp(SessionLocal session, java.lang.String input, java.lang.String format)Parse a string as a timestamp with the given format. -
Uses of ValueTimestamp in org.h2.util
Methods in org.h2.util that return ValueTimestamp Modifier and Type Method Description static ValueTimestampLegacyDateTimeUtils. fromTimestamp(CastDataProvider provider, long ms, int nanos)Get or create a timestamp value for the given date/time in millis.static ValueTimestampLegacyDateTimeUtils. fromTimestamp(CastDataProvider provider, java.util.TimeZone timeZone, java.sql.Timestamp timestamp)Get or create a timestamp value for the given timestamp.static ValueTimestampJSR310Utils. localDateTimeToValue(java.time.LocalDateTime localDateTime)Converts a LocalDateTime to a Value.private static ValueTimestampLegacyDateTimeUtils. timestampFromLocalMillis(long ms, int nanos) -
Uses of ValueTimestamp in org.h2.value
Methods in org.h2.value that return ValueTimestamp Modifier and Type Method Description private ValueTimestampValue. convertToTimestamp(TypeInfo targetType, CastDataProvider provider, int conversionMode)static ValueTimestampValueTimestamp. fromDateValueAndNanos(long dateValue, long timeNanos)Get or create a date value for the given date.static ValueTimestampValueTimestamp. parse(java.lang.String s, CastDataProvider provider)Parse a string to a ValueTimestamp, using the givenCastDataProvider.
-