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

software.coley.llzip.util.lazy.Lazy Maven / Gradle / Ivy

package software.coley.llzip.util.lazy;

/**
 * Common lazy type.
 *
 * @param 
 * 		Lazy supplier type.
 */
public class Lazy {
	protected final S lookup;
	protected boolean set;

	public Lazy(S lookup) {
		this.lookup = lookup;
	}
}