Package org.jparsec.functors
Interface Map<From,To>
-
- All Superinterfaces:
java.util.function.Function<From,To>
- All Known Subinterfaces:
Unary<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 Map<From,To> extends java.util.function.Function<From,To>
Deprecated.UseFunction
instead.Maps object of typeFrom
to an object of typeTo
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default To
apply(From from)
Deprecated.To
map(From from)
Deprecated.Mapsfrom
to the target object.
-