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

com.annimon.stream.function.Supplier Maven / Gradle / Ivy

The newest version!
package com.annimon.stream.function;

/**
 * Represents a function which supply a result.
 *
 * @param  the type of the result
 */
@FunctionalInterface
public interface Supplier {

    /**
     * Gets a result.
     *
     * @return a result
     */
    T get();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy