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

com.bluecatcode.common.functions.CheckedFunction Maven / Gradle / Ivy

The newest version!
package com.bluecatcode.common.functions;

import javax.annotation.Nullable;

/**
 * Determines an output value based on an input value.
 *
 * @since 1.0.5
 */
public interface CheckedFunction {

    /**
     * Returns the result of applying this function to {@code input}.
     *
     * @throws NullPointerException if {@code input} is null and this function does not accept null arguments
     * @throws E if unable to compute
     */
    @Nullable
    T apply(@Nullable F input) throws E;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy