net.anotheria.asg.data.Builder Maven / Gradle / Ivy
The newest version!
package net.anotheria.asg.data;
/**
* Generic interface for DataObject Builders.
*
* @author lrosenberg
* @param the type to build.
* @version $Id: $Id
*/
public interface Builder {
/**
* Builds a new instance of T.
*
* @return T
*/
T build();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy