com.google.common.base
Interface Predicate<T>

All Known Implementing Classes:
CharMatcher

@GwtCompatible
public interface Predicate<T>

Determines a true or false value for a given input.

Since:
2 (imported from Google Collections Library)
Author:
Kevin Bourrillion

Method Summary
 boolean apply(T input)
          Returns the result of applying this predicate to input.
 boolean equals(Object object)
          Indicates whether another object is equal to this predicate.
 

Method Detail

apply

boolean apply(@Nullable
              T input)
Returns the result of applying this predicate to input. This method is generally expected, but not absolutely required, to have the following properties:

Throws:
NullPointerException - if input is null and this predicate does not accept null arguments

equals

boolean equals(@Nullable
               Object object)
Indicates whether another object is equal to this predicate.

Most implementations will have no reason to override the behavior of Object.equals(java.lang.Object). However, an implementation may also choose to return true whenever object is a Predicate that it considers interchangeable with this one. "Interchangeable" typically means that this.apply(t) == that.apply(t) for all t of type T). Note that a false result from this method does not imply that the predicates are known not to be interchangeable.

Overrides:
equals in class Object
Parameters:
object - the reference object with which to compare.
Returns:
true if this object is the same as the obj argument; false otherwise.
See Also:
Object.hashCode(), Hashtable