declare namespace org { namespace springframework { namespace jdbc { namespace support { namespace incrementer { /** * {@link DataFieldMaxValueIncrementer} that retrieves the next value * of a given sequence on DB2 for the mainframe (z/OS, DB2/390, DB2/400). *

Thanks to Jens Eickmeyer for the suggestion! * @author Juergen Hoeller * @since 2.5.3 * @deprecated in favor of the differently named {#link Db2MainframeMaxValueIncrementer} */ // @ts-ignore class DB2MainframeSequenceMaxValueIncrementer extends org.springframework.jdbc.support.incrementer.AbstractSequenceMaxValueIncrementer { /** * Default constructor for bean property style usage. * @see #setDataSource * @see #setIncrementerName */ // @ts-ignore constructor() /** * Convenience constructor. * @param dataSource the DataSource to use * @param incrementerName the name of the sequence/table to use */ // @ts-ignore constructor(dataSource: javax.sql.DataSource, incrementerName: java.lang.String | string) // @ts-ignore getSequenceQuery(): string } } } } } }