Interface Configuration<S extends Configuration<S>>

All Known Implementing Classes:
AbstractConfiguration, BytecodeShowCommand.Configuration, ChecksumCommand.Configuration, EntriesExtractCommand.Configuration, EntriesFindCommand.Configuration, ManifestQueryCommand.Configuration, ManifestShowCommand.Configuration, ModuleDescriptorCommand.Configuration, ModuleNameCommand.Configuration, PackagesSplitCommand.Configuration, PackagesValidateCommand.Configuration, ServicesListCommand.Configuration, ServicesShowCommand.Configuration

public interface Configuration<S extends Configuration<S>>
Since:
0.3.0
  • Method Details

    • getOut

      PrintWriter getOut()
    • withOut

      S withOut(PrintWriter out)
    • getErr

      PrintWriter getErr()
    • withErr

      S withErr(PrintWriter err)
    • isFailOnError

      boolean isFailOnError()
    • withFailOnError

      S withFailOnError(boolean failOnError)
    • getGavs

      Set<String> getGavs()
    • withGav

      S withGav(String gav)
    • withGavs

      S withGavs(Set<String> gavs)
    • getFiles

      Set<Path> getFiles()
    • withFile

      S withFile(Path file)
    • withFiles

      S withFiles(Set<Path> files)
    • getUrls

      Set<URL> getUrls()
    • withUrl

      S withUrl(URL url)
    • withUrls

      S withUrls(Set<URL> urls)
    • getClasspaths

      Set<String> getClasspaths()
    • withClasspath

      S withClasspath(String classpath)
    • withClasspaths

      S withClasspaths(Set<String> classpath)
    • getDirectories

      Set<Path> getDirectories()
    • withDirectories

      S withDirectories(Path directory)
    • withDirectories

      S withDirectories(Set<Path> directories)
    • getCacheDirectory

      Path getCacheDirectory()
    • withCacheDirectory

      S withCacheDirectory(Path cacheDirectory)
    • getReportPath

      Path getReportPath()
    • withReportPath

      S withReportPath(Path reportPath)
    • getReportFormats

      Set<Format> getReportFormats()
    • withReportFormat

      S withReportFormat(Format reportFormat)
    • withReportFormats

      S withReportFormats(Set<Format> reportFormats)
    • getOutputFormat

      Format getOutputFormat()
    • withOutputFormat

      S withOutputFormat(Format outputFormat)