com.ajjpj.afoundation.function.AStatement1 Maven / Gradle / Ivy
package com.ajjpj.afoundation.function;
import java.io.Serializable;
/**
* Represents a function that takes a single parameter and returns nothing.
*
* @author arno
*/
public interface AStatement1 extends Serializable {
void apply(P param) throws E;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy