001/* 002 * Copyright (C) 2007 The Guava Authors 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except 005 * in compliance with the License. You may obtain a copy of the License at 006 * 007 * http://www.apache.org/licenses/LICENSE-2.0 008 * 009 * Unless required by applicable law or agreed to in writing, software distributed under the License 010 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 011 * or implied. See the License for the specific language governing permissions and limitations under 012 * the License. 013 */ 014 015package com.google.common.base; 016 017import com.google.common.annotations.GwtCompatible; 018import com.google.errorprone.annotations.CanIgnoreReturnValue; 019import org.checkerframework.checker.nullness.compatqual.NullableDecl; 020 021/** 022 * Determines an output value based on an input value; a pre-Java-8 version of {@link 023 * java.util.function.Function java.util.function.Function}. 024 * 025 * <p>The {@link Functions} class provides common functions and related utilities. 026 * 027 * <p>See the Guava User Guide article on <a 028 * href="https://github.com/google/guava/wiki/FunctionalExplained">the use of {@code Function}</a>. 029 * 030 * <h3>For Java 8+ users</h3> 031 * 032 * <p>This interface is now a legacy type. Use {@code java.util.function.Function} (or the 033 * appropriate primitive specialization such as {@code ToIntFunction}) instead whenever possible. 034 * Otherwise, at least reduce <i>explicit</i> dependencies on this type by using lambda expressions 035 * or method references instead of classes, leaving your code easier to migrate in the future. 036 * 037 * <p>To use an existing function (say, named {@code function}) in a context where the <i>other 038 * type</i> of function is expected, use the method reference {@code function::apply}. A future 039 * version of {@code com.google.common.base.Function} will be made to <i>extend</i> {@code 040 * java.util.function.Function}, making conversion code necessary only in one direction. At that 041 * time, this interface will be officially discouraged. 042 * 043 * @author Kevin Bourrillion 044 * @since 2.0 045 */ 046@GwtCompatible 047public interface Function<F, T> { 048 /** 049 * Returns the result of applying this function to {@code input}. This method is <i>generally 050 * expected</i>, but not absolutely required, to have the following properties: 051 * 052 * <ul> 053 * <li>Its execution does not cause any observable side effects. 054 * <li>The computation is <i>consistent with equals</i>; that is, {@link Objects#equal 055 * Objects.equal}{@code (a, b)} implies that {@code Objects.equal(function.apply(a), 056 * function.apply(b))}. 057 * </ul> 058 * 059 * @throws NullPointerException if {@code input} is null and this function does not accept null 060 * arguments 061 */ 062 @NullableDecl 063 @CanIgnoreReturnValue // TODO(kevinb): remove this 064 T apply(@NullableDecl F input); 065 066 /** 067 * <i>May</i> return {@code true} if {@code object} is a {@code Function} that behaves identically 068 * to this function. 069 * 070 * <p><b>Warning: do not depend</b> on the behavior of this method. 071 * 072 * <p>Historically, {@code Function} instances in this library have implemented this method to 073 * recognize certain cases where distinct {@code Function} instances would in fact behave 074 * identically. However, as code migrates to {@code java.util.function}, that behavior will 075 * disappear. It is best not to depend on it. 076 */ 077 @Override 078 boolean equals(@NullableDecl Object object); 079}