com.github.jlinq.Creator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jlinq Show documentation
Show all versions of jlinq Show documentation
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();
}