Package org.glassfish.pfl.basic.func
Interface UnaryFunction<T,R>
-
- All Superinterfaces:
java.util.function.Function<T,R>
- All Known Subinterfaces:
ElementParser
,Graph.Finder<E>
- All Known Implementing Classes:
ElementParserImpl
,Transformer
,UnaryFunctionBase
@Deprecated public interface UnaryFunction<T,R> extends java.util.function.Function<T,R>
Deprecated.replaced in JDK8 byFunction
Represents a functions that takes one argument and returns a result
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default R
apply(T t)
Deprecated.R
evaluate(T arg)
Deprecated.
-