Interface PropertyEqualsPredicate<T,V>


public interface PropertyEqualsPredicate<T,V>
Author:
Nick Collier
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    evaluate(T t, V v)
    Evaluates t against v, returning true or false.
  • Method Details

    • evaluate

      boolean evaluate(T t, V v)
      Evaluates t against v, returning true or false.
      Parameters:
      t - the property value as gotten from the agent
      v - the property value to evaluate against
      Returns:
      true if t evaluates to true with respect to v, otherwise false.