com.ajjpj.afoundation.function.AStatement1 Maven / Gradle / Ivy
The newest version!
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;
}