Interface Selector<TIn,​TOut>


public interface Selector<TIn,​TOut>
A function which transforms one object type into another
Author:
René Bergelt
  • Method Summary

    Modifier and Type
    Method
    Description
    select​(TIn item)
    Transforms item to the given output type
  • Method Details

    • select

      TOut select(TIn item)
      Transforms item to the given output type
      Parameters:
      item - The item to transform
      Returns:
      Result of the transformation