All Downloads are FREE. Search and download functionalities are using the official Maven repository.

rs.data.file.util.IntKeyGenerator Maven / Gradle / Ivy

/**
 * 
 */
package rs.data.file.util;


/**
 * A number generator for int.
 * @author ralph
 *
 */
public class IntKeyGenerator implements IKeyGenerator {

	/**
	 * The last generated ID.
	 */
	private int lastKey = 0;
	
	/**
	 * Constructor.
	 */
	public IntKeyGenerator() {
	}

	/**
	 * {@inheritDoc}
	 */
	@Override
	public Integer getNewId() {
		lastKey++;
		return lastKey;
	}

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy