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

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

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


/**
 * A number generator for long.
 * @author ralph
 *
 */
public class LongKeyGenerator implements IKeyGenerator {

	/**
	 * The last generated ID.
	 */
	private long lastKey = 0L;
	
	/**
	 * Constructor.
	 */
	public LongKeyGenerator() {
	}

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

	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy