to_j_local_time

to_j_local_time converts a date-time value into a Java LocalTime, which is the time that would be read from a clock and does not have a date or time zone.

Important

In query strings, users should choose the built-in function toLocalTime instead of to_j_local_time. For more information, see:

Syntax

Parameters

ParameterTypeDescription
dtUnion[None, LocalTime, int, str, datetime.time, datetime.datetime, numpy.datetime64, pandas.Timestamp]

A Python local time or local time string.

Time strings can be formatted as hh:mm:ss[.nnnnnnnnn].

Returns

Returns a LocalTime.

Examples