All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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