|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DataFieldMaxValueIncrementer
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.
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. |
String |
nextStringValue()
Increment the data store field's max value as String. |
Method Detail |
---|
int nextIntValue() throws DataAccessException
DataAccessException
- in case of errorslong nextLongValue() throws DataAccessException
DataAccessException
- in case of errorsString nextStringValue() throws DataAccessException
DataAccessException
- in case of errors
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |