Class FloatObjectArrayCodec
java.lang.Object
org.mariadb.jdbc.plugin.codec.FloatObjectArrayCodec
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) static final intprivate static Classstatic final FloatObjectArrayCodecdefault instance -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleancanDecode(ColumnDecoder column, Class<?> type) If codec can decode this a server datatype to a java class typebooleanCan Codec encode the java object typeCodec native typeFloat[]decodeBinary(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) Decode from a mysql packet binary encoded a value to codec java typeFloat[]decodeText(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) Decode from a mysql packet text encoded a value to codec java typevoidBinary encode value to writervoidText encode value to writerintReturn server encoding data typeprivate byte[]getBytes(ReadableByteBuf buf, MutableInt length, ColumnDecoder column) static byte[]toByteArray(Float[] floatArray) static Float[]toFloatArray(byte[] byteArray) Methods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Codec
canEncodeLongData, encodeData, encodeLongData
-
Field Details
-
INSTANCE
default instance -
floatArrayClass
-
COMPATIBLE_TYPES
-
BYTES_IN_FLOAT
static final int BYTES_IN_FLOAT- See Also:
-
-
Constructor Details
-
FloatObjectArrayCodec
public FloatObjectArrayCodec()
-
-
Method Details
-
className
-
canDecode
Description copied from interface:CodecIf codec can decode this a server datatype to a java class type -
canEncode
-
decodeText
public Float[] decodeText(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) throws SQLDataException Description copied from interface:CodecDecode from a mysql packet text encoded a value to codec java type- Specified by:
decodeTextin interfaceCodec<Float[]>- 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 Float[] decodeBinary(ReadableByteBuf buf, MutableInt length, ColumnDecoder column, Calendar cal, Context context) throws SQLDataException Description copied from interface:CodecDecode from a mysql packet binary encoded a value to codec java type- Specified by:
decodeBinaryin interfaceCodec<Float[]>- 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
-
toByteArray
-
toFloatArray
-
getBytes
private byte[] getBytes(ReadableByteBuf buf, MutableInt length, ColumnDecoder column) throws SQLDataException - Throws:
SQLDataException
-
encodeText
public void encodeText(Writer encoder, Context context, Object value, Calendar cal, Long maxLen) throws IOException Description copied from interface:CodecText encode value to writer- Specified by:
encodeTextin interfaceCodec<Float[]>- 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:CodecBinary encode value to writer- Specified by:
encodeBinaryin interfaceCodec<Float[]>- 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:CodecReturn server encoding data type- Specified by:
getBinaryEncodeTypein interfaceCodec<Float[]>- Returns:
- server encoding data type
-