Class OffsetDateTimeCodec

  • All Implemented Interfaces:
    Codec<java.time.OffsetDateTime>

    public class OffsetDateTimeCodec
    extends java.lang.Object
    implements Codec<java.time.OffsetDateTime>
    OffsetDateTime codec
    • Field Detail

      • COMPATIBLE_TYPES

        private static final java.util.EnumSet<DataType> COMPATIBLE_TYPES
    • Constructor Detail

      • OffsetDateTimeCodec

        public OffsetDateTimeCodec()
    • Method Detail

      • className

        public java.lang.String className()
        Description copied from interface: Codec
        Codec native type
        Specified by:
        className in interface Codec<java.time.OffsetDateTime>
        Returns:
        code native return type
      • canDecode

        public boolean canDecode​(ColumnDecoder column,
                                 java.lang.Class<?> type)
        Description copied from interface: Codec
        If codec can decode this a server datatype to a java class type
        Specified by:
        canDecode in interface Codec<java.time.OffsetDateTime>
        Parameters:
        column - server datatype
        type - java return class
        Returns:
        true if codec can decode it
      • canEncode

        public boolean canEncode​(java.lang.Object value)
        Description copied from interface: Codec
        Can Codec encode the java object type
        Specified by:
        canEncode in interface Codec<java.time.OffsetDateTime>
        Parameters:
        value - java object type
        Returns:
        true if codec can encode java type
      • decodeText

        public java.time.OffsetDateTime decodeText​(ReadableByteBuf buf,
                                                   MutableInt length,
                                                   ColumnDecoder column,
                                                   java.util.Calendar calParam,
                                                   Context context)
                                            throws java.sql.SQLDataException
        Description copied from interface: Codec
        Decode from a mysql packet text encoded a value to codec java type
        Specified by:
        decodeText in interface Codec<java.time.OffsetDateTime>
        Parameters:
        buf - mysql packet buffer
        length - encoded value length
        column - server column metadata
        calParam - calendar
        context - connection context
        Returns:
        decoded value
        Throws:
        java.sql.SQLDataException - if unexpected error occurs during decoding
      • decodeBinary

        public java.time.OffsetDateTime decodeBinary​(ReadableByteBuf buf,
                                                     MutableInt length,
                                                     ColumnDecoder column,
                                                     java.util.Calendar calParam,
                                                     Context context)
                                              throws java.sql.SQLDataException
        Description copied from interface: Codec
        Decode from a mysql packet binary encoded a value to codec java type
        Specified by:
        decodeBinary in interface Codec<java.time.OffsetDateTime>
        Parameters:
        buf - mysql packet buffer
        length - encoded value length
        column - server column metadata
        calParam - calendar
        context - connection context
        Returns:
        decoded value
        Throws:
        java.sql.SQLDataException - if unexpected error occurs during decoding
      • encodeText

        public void encodeText​(Writer encoder,
                               Context context,
                               java.lang.Object val,
                               java.util.Calendar calParam,
                               java.lang.Long maxLen)
                        throws java.io.IOException
        Description copied from interface: Codec
        Text encode value to writer
        Specified by:
        encodeText in interface Codec<java.time.OffsetDateTime>
        Parameters:
        encoder - writer
        context - connection context
        val - value to encode
        calParam - calendar
        maxLen - maximum value length
        Throws:
        java.io.IOException - if any socket error occurs
      • encodeBinary

        public void encodeBinary​(Writer encoder,
                                 Context context,
                                 java.lang.Object value,
                                 java.util.Calendar calParam,
                                 java.lang.Long maxLength)
                          throws java.io.IOException
        Description copied from interface: Codec
        Binary encode value to writer
        Specified by:
        encodeBinary in interface Codec<java.time.OffsetDateTime>
        Parameters:
        encoder - writer
        context - connection context
        value - value to encode
        calParam - calendar
        maxLength - maximum value length
        Throws:
        java.io.IOException - if any socket error occurs
      • getBinaryEncodeType

        public int getBinaryEncodeType()
        Description copied from interface: Codec
        Return server encoding data type
        Specified by:
        getBinaryEncodeType in interface Codec<java.time.OffsetDateTime>
        Returns:
        server encoding data type