declare namespace org { namespace springframework { namespace jdbc { namespace support { namespace incrementer { /** * {@link DataFieldMaxValueIncrementer} that retrieves the next value * of a given HSQL sequence. *

Thanks to Guillaume Bilodeau for the suggestion! *

NOTE: This is an alternative to using a regular table to support * generating unique keys that was necessary in previous versions of HSQL. * @author Thomas Risberg * @since 2.5 * @see HsqlMaxValueIncrementer */ // @ts-ignore class HsqlSequenceMaxValueIncrementer 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 } } } } } }