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

com.ajjpj.abase.function.AFunction1 Maven / Gradle / Ivy

package com.ajjpj.abase.function;

import java.io.Serializable;


/**
 * Represents a function that takes a single argument and produces a result.
 *
 * @param 

parameter type * @param return type * * @author arno */ public interface AFunction1 extends Serializable { R apply(P param) throws E; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy