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

com.rathravane.till.data.serialNumberGenerator Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.rathravane.till.data;

/**
 * Generate serial numbers.
 * @author peter
 *
 */
public class serialNumberGenerator
{
	public serialNumberGenerator ()
	{
		this ( "" );
	}

	public serialNumberGenerator ( String prefix )
	{
		this ( prefix, 1 );
	}

	public serialNumberGenerator ( long startAt )
	{
		this ( "", startAt );
	}

	public serialNumberGenerator ( String prefix, long startAt )
	{
		fNext = startAt;
		fPrefix = prefix;
	}

	public synchronized String getNext ()
	{
		return fPrefix + (fNext++);
	}

	private final String fPrefix;
	private long fNext;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy