Interface Predicate<T>

Type Parameters:
T - the type of the value to evaluate
All Known Implementing Classes:
com.oracle.coherence.common.net.InetAddresses.IsRoutable, com.oracle.coherence.common.net.InetAddresses.IsSubnetMask, InetAddressHelper.RoutableFilter, InetAddressHelper.SubnetMaskFilter

public interface Predicate<T>
Predicate represents a boolean test of an object.
Author:
rhl 2011.11.14
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Return true iff the specified object satisfies the predicate.
  • Method Details

    • evaluate

      boolean evaluate(T t)
      Return true iff the specified object satisfies the predicate.
      Parameters:
      t - the object to evaluate
      Returns:
      true iff the specified object satisfies the predicate