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 ValueTimestamp
ToDateParser. getResultingValue()
static ValueTimestamp
ToDateParser. toDate(SessionLocal session, java.lang.String input, java.lang.String format)
Parse a string as a date with the given format.static ValueTimestamp
ToDateParser. 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 ValueTimestamp
LegacyDateTimeUtils. fromTimestamp(CastDataProvider provider, long ms, int nanos)
Get or create a timestamp value for the given date/time in millis.static ValueTimestamp
LegacyDateTimeUtils. fromTimestamp(CastDataProvider provider, java.util.TimeZone timeZone, java.sql.Timestamp timestamp)
Get or create a timestamp value for the given timestamp.static ValueTimestamp
JSR310Utils. localDateTimeToValue(java.time.LocalDateTime localDateTime)
Converts a LocalDateTime to a Value.private static ValueTimestamp
LegacyDateTimeUtils. 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 ValueTimestamp
Value. convertToTimestamp(TypeInfo targetType, CastDataProvider provider, int conversionMode)
static ValueTimestamp
ValueTimestamp. fromDateValueAndNanos(long dateValue, long timeNanos)
Get or create a date value for the given date.static ValueTimestamp
ValueTimestamp. parse(java.lang.String s, CastDataProvider provider)
Parse a string to a ValueTimestamp, using the givenCastDataProvider
.
-