Interface Extractor<F,T>

Type Parameters:
F - type of element from which the conversion happens
T - target element type
All Superinterfaces:
Function<F,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 Extractor<F,T> extends Function<F,T>
Deprecated.
use Function instead
Author:
Mateusz Haligowski
  • Method Summary

    Modifier and Type
    Method
    Description
    default T
    apply(F f)
    Deprecated.
     
    extract(F input)
    Deprecated.
     

    Methods inherited from interface java.util.function.Function

    andThen, compose
  • Method Details

    • apply

      default T apply(F f)
      Deprecated.
      Specified by:
      apply in interface Function<F,T>
    • extract

      T extract(F input)
      Deprecated.