1 16 17 package org.springframework.jdbc.support.incrementer; 18 19 import org.springframework.dao.DataAccessException; 20 21 32 public interface DataFieldMaxValueIncrementer { 33 34 39 int nextIntValue() throws DataAccessException; 40 41 46 long nextLongValue() throws DataAccessException; 47 48 53 String nextStringValue() throws DataAccessException; 54 55 } 56 | Popular Tags |