public interface DataFieldMaxValueIncrementer (Code)
Interface that defines contract of incrementing any data store field's
maximum value. Works much like a sequence number generator.
Typical implementations may use standard SQL, native RDBMS sequences
or Stored Procedures to do the job.
author: Dmitriy Kopylenko author: Jean-Pierre Pawlak author: Juergen Hoeller
Method Summary
int
nextIntValue() Increment the data store field's max value as int.
long
nextLongValue() Increment the data store field's max value as long.