Interface Predicate<T>

Type Parameters:
T - type of values this predicate is defined on

public interface Predicate<T>
Deprecated.
use Predicate instead
Type safe counter part of code org.apache.commons.collections.Predicate.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    evaluate(T arg)
    Deprecated.
    Use the specified parameter to perform a test that returns true or false.
  • Method Details

    • evaluate

      boolean evaluate(T arg)
      Deprecated.
      Use the specified parameter to perform a test that returns true or false.
      Parameters:
      arg - the predicate to evaluate, should not be changed
      Returns:
      true or false