Interface Importer

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface Importer
    Interface implemented by classes that can analyze a file to prepare data for import.

    An importer analyzes input files, detects issues in them, find the appropriate template, and calls the passed SheetImporter.

    Author:
    Damien Carbonne