Interface ListUtil.Mapper<IN,​OUT>

  • Type Parameters:
    IN - The type of object used as source for the conversion
    OUT - The type of the resulting object
    Enclosing class:
    ListUtil

    public static interface ListUtil.Mapper<IN,​OUT>
    this interface just defines one method to convert one object into another.
    • Method Detail

      • map

        OUT map​(IN inobject)
        converts the input object to the output
        Parameters:
        inobject - the object to convert
        Returns:
        the converted object