Package org.mariadb.jdbc.plugin.codec
Class ShortCodec
- java.lang.Object
-
- org.mariadb.jdbc.plugin.codec.ShortCodec
-
-
Field Summary
Fields Modifier and Type Field Description static ShortCodec
INSTANCE
default instance
-
Constructor Summary
Constructors Constructor Description ShortCodec()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canDecode(org.mariadb.jdbc.client.Column column, Class<?> type)
If codec can decode this a server datatype to a java class typeboolean
canEncode(Object value)
Can Codec encode the java object typeString
className()
Codec native typeShort
decodeBinary(org.mariadb.jdbc.client.ReadableByteBuf buffer, int length, org.mariadb.jdbc.client.Column column, Calendar cal)
Decode from a mysql packet binary encoded a value to codec java typeshort
decodeBinaryShort(org.mariadb.jdbc.client.ReadableByteBuf buf, int length, org.mariadb.jdbc.client.Column column)
Decode short from binary packetShort
decodeText(org.mariadb.jdbc.client.ReadableByteBuf buffer, int length, org.mariadb.jdbc.client.Column column, Calendar cal)
Decode from a mysql packet text encoded a value to codec java typeshort
decodeTextShort(org.mariadb.jdbc.client.ReadableByteBuf buf, int length, org.mariadb.jdbc.client.Column column)
Decode short from text packetvoid
encodeBinary(Writer encoder, Object value, Calendar cal, Long maxLength)
Binary encode value to writervoid
encodeText(Writer encoder, org.mariadb.jdbc.client.Context context, Object value, Calendar cal, Long maxLen)
Text encode value to writerint
getBinaryEncodeType()
Return server encoding data type-
Methods 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 Detail
-
INSTANCE
public static final ShortCodec INSTANCE
default instance
-
-
Method Detail
-
canDecode
public boolean canDecode(org.mariadb.jdbc.client.Column column, Class<?> type)
Description copied from interface:Codec
If codec can decode this a server datatype to a java class type
-
canEncode
public boolean canEncode(Object value)
Description copied from interface:Codec
Can Codec encode the java object type
-
decodeText
public Short decodeText(org.mariadb.jdbc.client.ReadableByteBuf buffer, int length, org.mariadb.jdbc.client.Column column, Calendar cal) 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<Short>
- Parameters:
buffer
- mysql packet bufferlength
- encoded value lengthcolumn
- server column metadatacal
- calendar- Returns:
- decoded value
- Throws:
SQLDataException
- if unexpected error occurs during decoding
-
decodeTextShort
public short decodeTextShort(org.mariadb.jdbc.client.ReadableByteBuf buf, int length, org.mariadb.jdbc.client.Column column) throws SQLDataException
Decode short from text packet- Parameters:
buf
- packet bufferlength
- data lengthcolumn
- metadata column- Returns:
- short value
- Throws:
SQLDataException
- if any decoding version occurs
-
decodeBinary
public Short decodeBinary(org.mariadb.jdbc.client.ReadableByteBuf buffer, int length, org.mariadb.jdbc.client.Column column, Calendar cal) 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<Short>
- Parameters:
buffer
- mysql packet bufferlength
- encoded value lengthcolumn
- server column metadatacal
- calendar- Returns:
- decoded value
- Throws:
SQLDataException
- if unexpected error occurs during decoding
-
decodeBinaryShort
public short decodeBinaryShort(org.mariadb.jdbc.client.ReadableByteBuf buf, int length, org.mariadb.jdbc.client.Column column) throws SQLDataException
Decode short from binary packet- Parameters:
buf
- packet bufferlength
- data lengthcolumn
- metadata column- Returns:
- short value
- Throws:
SQLDataException
- if any decoding version occurs
-
encodeText
public void encodeText(Writer encoder, org.mariadb.jdbc.client.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<Short>
- 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, Object value, Calendar cal, Long maxLength) throws IOException
Description copied from interface:Codec
Binary encode value to writer- Specified by:
encodeBinary
in interfaceCodec<Short>
- Parameters:
encoder
- writervalue
- 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<Short>
- Returns:
- server encoding data type
-
-