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

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

Go to download

a-base is a library of basic (hence the name) classes, most notably immutable collection classes with copy-on-write operations

The newest version!
package com.ajjpj.abase.function;

import java.io.Serializable;


/**
 * @author arno
 */
public interface APredicate extends Serializable {
    boolean apply(T o) throws E;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy