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

com.github.dakusui.combinatoradix.utils.Predicate Maven / Gradle / Ivy

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