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

de.team33.patterns.exceptional.dione.XFunction Maven / Gradle / Ivy

Go to download

Contains variants of basic functional constructs that can throw checked exceptions, tools for converting them to their more manageable counterparts, exception types useful for this, and some tools for exception handling.

There is a newer version: 1.20.0
Show newest version
package de.team33.patterns.exceptional.dione;

/**
 * A kind of function that allows to throw a checked exception.
 *
 * @see java.util.function.Function
 */
@FunctionalInterface
public interface XFunction {

    /**
     * Performs this operation on the given argument and returns a result.
     *
     * @throws X if so.
     * @see java.util.function.Function#apply(Object)
     */
    R apply(T t) throws X;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy