
com.github.dakusui.combinatoradix.utils.Predicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of combinatoradix Show documentation
Show all versions of combinatoradix Show documentation
A mathematical enumeration library for Java
The newest version!
package com.github.dakusui.combinatoradix.utils;
public interface Predicate {
Predicate NOT_NULL = new Predicate() {
@Override
public boolean test(Object value) {
return value != null;
}
};
boolean test(T value);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy