![JAR search and dependency download from the Maven repository](/logo.png)
org.ak80.sota.function.Supplier Maven / Gradle / Ivy
package org.ak80.sota.function;
/**
* A Supplier returns an object
*
* @param the type of the returned object
*/
@FunctionalInterface
public interface Supplier {
/**
* Return the object
*
* @return the next object
*/
T get();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy