![JAR search and dependency download from the Maven repository](/logo.png)
com.zipwhip.util.Generator Maven / Gradle / Ivy
package com.zipwhip.util;
/**
* Created by IntelliJ IDEA.
* User: Michael
* Date: 11/26/11
* Time: 9:05 PM
*
* Generates content using a proprietary strategy. Example uses include generating auto-numbers,
* Twitter snowflakes, UUIDS, or random numbers. Kind of like an Iterator
*/
public interface Generator {
/**
* Generate content using your strategy.
*
* @return The next unique content.
*/
T next();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy