Class LocalZonedTimestampLongConverter
- java.lang.Object
-
- org.apache.flink.table.data.conversion.LocalZonedTimestampLongConverter
-
- All Implemented Interfaces:
Serializable
,DataStructureConverter<TimestampData,Long>
@Internal public class LocalZonedTimestampLongConverter extends Object implements DataStructureConverter<TimestampData,Long>
Converter forLocalZonedTimestampType
ofLong
external type.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LocalZonedTimestampLongConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Long
toExternal(TimestampData internal)
Converts to external data structure.TimestampData
toInternal(Long external)
Converts to internal data structure.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.flink.table.data.conversion.DataStructureConverter
isIdentityConversion, open, toExternalOrNull, toInternalOrNull
-
-
-
-
Method Detail
-
toInternal
public TimestampData toInternal(Long external)
Description copied from interface:DataStructureConverter
Converts to internal data structure.Note: Parameter must not be null. Output must not be null.
- Specified by:
toInternal
in interfaceDataStructureConverter<TimestampData,Long>
-
toExternal
public Long toExternal(TimestampData internal)
Description copied from interface:DataStructureConverter
Converts to external data structure.Note: Parameter must not be null. Output must not be null.
- Specified by:
toExternal
in interfaceDataStructureConverter<TimestampData,Long>
-
-