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