Class JsonType

    • Constructor Detail

      • JsonType

        public JsonType​(CharType delegate,
                        boolean useRealType)
    • Method Detail

      • materializeObject

        public Json materializeObject​(ResultSet rs,
                                      int index,
                                      int type)
                               throws Exception
        Description copied from interface: ExtendedType
        Reads an object from JDBC ResultSet column, converting it to class returned by 'getClassName' method.
        Specified by:
        materializeObject in interface ExtendedType<Json>
        Throws:
        Exception - if read error occurred, or an object can't be converted to a target Java class.
      • materializeObject

        public Json materializeObject​(CallableStatement rs,
                                      int index,
                                      int type)
                               throws Exception
        Description copied from interface: ExtendedType
        Reads an object from a stored procedure OUT parameter, converting it to class returned by 'getClassName' method.
        Specified by:
        materializeObject in interface ExtendedType<Json>
        Throws:
        Exception - if read error occurred, or an object can't be converted to a target Java class.
      • toString

        public String toString​(Json value)
        Description copied from interface: ExtendedType
        Converts value of the supported type to a human-readable String representation.
        Specified by:
        toString in interface ExtendedType<Json>
        Parameters:
        value - a value to convert to String.