Package io.appium.java_client.functions
Interface AppiumFunction<F,T>
-
- Type Parameters:
F
- The input typeT
- The return type
- All Superinterfaces:
com.google.common.base.Function<F,T>
,java.util.function.Function<F,T>
- All Known Subinterfaces:
ExpectedCondition<T>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Deprecated @FunctionalInterface public interface AppiumFunction<F,T> extends com.google.common.base.Function<F,T>, java.util.function.Function<F,T>
Deprecated.UseFunction
insteadThis is extended version ofFunction
. It is combined withFunction
. It was designed in order to provide compatibility with theWait
.
-
-
Method Summary
All Methods Instance Methods Default Methods Deprecated Methods Modifier and Type Method Description default <V> AppiumFunction<F,V>
andThen(java.util.function.Function<? super T,? extends V> after)
Deprecated.default <V> AppiumFunction<V,T>
compose(java.util.function.Function<? super V,? extends F> before)
Deprecated.
-
-
-
Method Detail
-
compose
default <V> AppiumFunction<V,T> compose(java.util.function.Function<? super V,? extends F> before)
Deprecated.
-
andThen
default <V> AppiumFunction<F,V> andThen(java.util.function.Function<? super T,? extends V> after)
Deprecated.
-
-