Interface ExcelParserMatcher

  • All Superinterfaces:
    java.util.function.Predicate<java.lang.String>
    All Known Implementing Classes:
    DateExcelParserMatcher, DefaultExcelParserMatcher
    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 ExcelParserMatcher
    extends java.util.function.Predicate<java.lang.String>
    Allows to decide which ImportParameterParser will be chosen.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean test​(java.lang.String input)  
      • Methods inherited from interface java.util.function.Predicate

        and, negate, or
    • Method Detail

      • test

        boolean test​(@Nonnull
                     java.lang.String input)
        Specified by:
        test in interface java.util.function.Predicate<java.lang.String>