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

com.codepoetics.fluvius.api.functional.Predicate Maven / Gradle / Ivy

There is a newer version: 1.10
Show newest version
package com.codepoetics.fluvius.api.functional;

import java.io.Serializable;

/**
 * A predicate which can be used to test a value.
 *
 * @param  The type of the value tested by this predicate.
 */
public interface Predicate extends Serializable {
  /**
   * Apply this predicate to the supplied value.
   *
   * @param value The value to test.
   * @return True if the value matches this predicate, false otherwise.
   */
  boolean test(T value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy