com.g2forge.alexandria.java.function.IPredicate1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ax-java Show documentation
Show all versions of ax-java Show documentation
Standard Java library and the basis of the ${alexandria.name} project.
package com.g2forge.alexandria.java.function;
import java.util.function.Predicate;
@FunctionalInterface
public interface IPredicate1 extends Predicate, IPredicate {
public static IPredicate1 create(boolean value) {
return t -> value;
}
public static IPredicate1 create(IPredicate1 predicate) {
return predicate;
}
}