Package org.apache.arrow.driver.jdbc
Class ArrowFlightJdbcTime
java.lang.Object
java.util.Date
java.sql.Time
org.apache.arrow.driver.jdbc.ArrowFlightJdbcTime
- All Implemented Interfaces:
Serializable
,Cloneable
,Comparable<Date>
Wrapper class for Time objects to include the milliseconds part in ISO 8601 format in
this#toString.
- See Also:
-
Constructor Summary
ConstructorDescriptionArrowFlightJdbcTime
(long milliseconds) Constructs this object based on epoch millis. -
Method Summary
Methods inherited from class java.sql.Time
getDate, getDay, getMonth, getYear, setDate, setMonth, setTime, setYear, toInstant, toLocalTime, valueOf, valueOf
Methods inherited from class java.util.Date
after, before, clone, compareTo, from, getHours, getMinutes, getSeconds, getTime, getTimezoneOffset, parse, setHours, setMinutes, setSeconds, toGMTString, toLocaleString, UTC
-
Constructor Details
-
ArrowFlightJdbcTime
public ArrowFlightJdbcTime(long milliseconds) Constructs this object based on epoch millis.- Parameters:
milliseconds
- milliseconds representing Time.
-
-
Method Details