Class VoidType

  • All Implemented Interfaces:
    ExtendedType<Void>

    public class VoidType
    extends Object
    implements ExtendedType<Void>
    A noop type that is sometimes useful to suppress extended types operations. It will set and get null values.
    Since:
    1.2
    • Constructor Detail

      • VoidType

        public VoidType()
    • Method Detail

      • materializeObject

        public Void 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<Void>
        Throws:
        Exception - if read error occurred, or an object can't be converted to a target Java class.
      • materializeObject

        public Void 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<Void>
        Throws:
        Exception - if read error occurred, or an object can't be converted to a target Java class.
      • toString

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