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

com.github.jlinq.Creator Maven / Gradle / Ivy

Go to download

A LINQ-like implementation that can be used to simplify the work with data classes.

The newest version!
package com.github.jlinq;

/**
 * A simple object factory.
 * @author Marcel Singer
 *
 * @param  The type of the object(s) that will be created by this creator.
 */
public interface Creator {

	/**
	 * Creates an object.
	 * @return The created object.
	 */
	T create();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy