001    /*
002     * Copyright (C) 2007 The Guava Authors
003     *
004     * Licensed under the Apache License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     *
008     * http://www.apache.org/licenses/LICENSE-2.0
009     *
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    
017    package com.google.common.base;
018    
019    import com.google.common.annotations.GwtCompatible;
020    
021    import javax.annotation.Nullable;
022    
023    /**
024     * Determines a true or false value for a given input.
025     * 
026     * <p>See the Guava User Guide article on <a href=
027     * "http://code.google.com/p/guava-libraries/wiki/FunctionalExplained">the use of {@code
028     * Predicate}</a>.
029     *
030     * @author Kevin Bourrillion
031     * @since 2.0 (imported from Google Collections Library)
032     */
033    @GwtCompatible
034    public interface Predicate<T> {
035      /**
036       * Returns the result of applying this predicate to {@code input}. This method is <i>generally
037       * expected</i>, but not absolutely required, to have the following properties:
038       *
039       * <ul>
040       * <li>Its execution does not cause any observable side effects.
041       * <li>The computation is <i>consistent with equals</i>; that is, {@link Objects#equal
042       *     Objects.equal}{@code (a, b)} implies that {@code predicate.apply(a) ==
043       *     predicate.apply(b))}.
044       * </ul>
045       *
046       * @throws NullPointerException if {@code input} is null and this predicate does not accept null
047       *     arguments
048       */
049      boolean apply(@Nullable T input);
050    
051      /**
052       * Indicates whether another object is equal to this predicate.
053       *
054       * <p>Most implementations will have no reason to override the behavior of {@link Object#equals}.
055       * However, an implementation may also choose to return {@code true} whenever {@code object} is a
056       * {@link Predicate} that it considers <i>interchangeable</i> with this one. "Interchangeable"
057       * <i>typically</i> means that {@code this.apply(t) == that.apply(t)} for all {@code t} of type
058       * {@code T}). Note that a {@code false} result from this method does not imply that the
059       * predicates are known <i>not</i> to be interchangeable.
060       */
061      @Override
062      boolean equals(@Nullable Object object);
063    }