
com.annimon.stream.function.Supplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of stream Show documentation
Show all versions of stream Show documentation
Stream API from Java 8 rewrited on iterators for Java 7 and below.
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