net.dongliu.commons.function.ESupplier Maven / Gradle / Ivy
package net.dongliu.commons.function;
/**
* @author Liu Dong
*/
@FunctionalInterface
public interface ESupplier {
/**
* Gets a result.
*
* @return a result
*/
T get() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy