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

org.fiolino.common.util.SupplierWithException Maven / Gradle / Ivy

Go to download

General structure to easily create dynamic logic via MethodHandles and others.

There is a newer version: 1.0.10
Show newest version
package org.fiolino.common.util;

/**
 * {@link java.util.function.Supplier}-like interface which allows the implementor to throw exceptions.
 *
 * Created by kuli on 19.06.17.
 */
@FunctionalInterface
public interface SupplierWithException {
    /**
     * Gets the value.
     */
    T get() throws E;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy