Package org.mariadb.jdbc.plugin.codec
Class LocalTimeCodec
java.lang.Object
org.mariadb.jdbc.plugin.codec.LocalTimeCodec
LocalTime codec
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
canDecode
(ColumnDecoder column, Class<?> type) If codec can decode this a server datatype to a java class typeboolean
Can Codec encode the java object typeCodec native typedecodeBinary
(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) Decode from a mysql packet binary encoded a value to codec java typedecodeText
(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) Decode from a mysql packet text encoded a value to codec java typevoid
Binary encode value to writervoid
Text encode value to writerint
Return server encoding data typestatic int[]
parseTime
(ReadableByteBuf buf, MutableInt length, ColumnDecoder column) Parse text value into hour/minutes/seconds/microseconds arrayMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.mariadb.jdbc.plugin.Codec
canEncodeLongData, encodeData, encodeLongData
-
Field Details
-
INSTANCE
default instance -
COMPATIBLE_TYPES
-
-
Constructor Details
-
LocalTimeCodec
public LocalTimeCodec()
-
-
Method Details
-
parseTime
public static int[] parseTime(ReadableByteBuf buf, MutableInt length, ColumnDecoder column) throws SQLDataException Parse text value into hour/minutes/seconds/microseconds array- Parameters:
buf
- packet bufferlength
- data lengthcolumn
- column metadata- Returns:
- hour/minutes/seconds/microseconds array
- Throws:
SQLDataException
- if parsing error occurs
-
className
Description copied from interface:Codec
Codec native type -
canDecode
Description copied from interface:Codec
If codec can decode this a server datatype to a java class type -
canEncode
Description copied from interface:Codec
Can Codec encode the java object type -
decodeText
public LocalTime decodeText(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) throws SQLDataException Description copied from interface:Codec
Decode from a mysql packet text encoded a value to codec java type- Specified by:
decodeText
in interfaceCodec<LocalTime>
- Parameters:
buf
- mysql packet bufferlength
- encoded value lengthcolumn
- server column metadatacal
- calendarcontext
- connection context- Returns:
- decoded value
- Throws:
SQLDataException
- if unexpected error occurs during decoding
-
decodeBinary
public LocalTime decodeBinary(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) throws SQLDataException Description copied from interface:Codec
Decode from a mysql packet binary encoded a value to codec java type- Specified by:
decodeBinary
in interfaceCodec<LocalTime>
- Parameters:
buf
- mysql packet bufferlength
- encoded value lengthcolumn
- server column metadatacal
- calendarcontext
- connection context- Returns:
- decoded value
- Throws:
SQLDataException
- if unexpected error occurs during decoding
-
encodeText
public void encodeText(Writer encoder, Context context, Object value, Calendar cal, Long maxLen) throws IOException Description copied from interface:Codec
Text encode value to writer- Specified by:
encodeText
in interfaceCodec<LocalTime>
- Parameters:
encoder
- writercontext
- connection contextvalue
- value to encodecal
- calendarmaxLen
- maximum value length- Throws:
IOException
- if any socket error occurs
-
encodeBinary
public void encodeBinary(Writer encoder, Context context, Object value, Calendar cal, Long maxLength) throws IOException Description copied from interface:Codec
Binary encode value to writer- Specified by:
encodeBinary
in interfaceCodec<LocalTime>
- Parameters:
encoder
- writercontext
- connection contextvalue
- value to encodecal
- calendarmaxLength
- maximum value length- Throws:
IOException
- if any socket error occurs
-
getBinaryEncodeType
public int getBinaryEncodeType()Description copied from interface:Codec
Return server encoding data type- Specified by:
getBinaryEncodeType
in interfaceCodec<LocalTime>
- Returns:
- server encoding data type
-