Class FilePatternMatcher.Builder

java.lang.Object
com.buschmais.jqassistant.plugin.common.api.scanner.filesystem.FilePatternMatcher.Builder
Enclosing class:
FilePatternMatcher

public static class FilePatternMatcher.Builder extends Object
Builder for the file pattern matcher.
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • include

      public FilePatternMatcher.Builder include(String patternList)
      Configures a list of file name patterns to include.
      Parameters:
      patternList - The comma separated list of file name patterns to include.
      Returns:
      The builder.
    • exclude

      public FilePatternMatcher.Builder exclude(String patternList)
      Configures a list of file name patterns to exclude.
      Parameters:
      patternList - The comma separated list of file name patterns to exclude.
      Returns:
      The builder.
    • build

      public FilePatternMatcher build()
      Returns the configured matcher instance.
      Returns:
      The matcher instance.