Class AnalyzeResult.Builder
- java.lang.Object
-
- de.skuzzle.enforcer.restrictimports.analyze.AnalyzeResult.Builder
-
- Enclosing class:
- AnalyzeResult
public static class AnalyzeResult.Builder extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AnalyzeResultbuild()AnalyzeResult.BuilderwithAnalysedFileCount(int analysedFiles)AnalyzeResult.BuilderwithDuration(long duration)AnalyzeResult.BuilderwithMatches(MatchedFile.Builder... matches)AnalyzeResult.BuilderwithMatches(Collection<MatchedFile> matches)AnalyzeResult.BuilderwithMatchesInTestCode(MatchedFile.Builder... matches)AnalyzeResult.BuilderwithMatchesInTestCode(Collection<MatchedFile> matches)
-
-
-
Method Detail
-
withMatches
public AnalyzeResult.Builder withMatches(Collection<MatchedFile> matches)
-
withMatches
public AnalyzeResult.Builder withMatches(MatchedFile.Builder... matches)
-
withMatchesInTestCode
public AnalyzeResult.Builder withMatchesInTestCode(Collection<MatchedFile> matches)
-
withMatchesInTestCode
public AnalyzeResult.Builder withMatchesInTestCode(MatchedFile.Builder... matches)
-
withDuration
public AnalyzeResult.Builder withDuration(long duration)
-
withAnalysedFileCount
public AnalyzeResult.Builder withAnalysedFileCount(int analysedFiles)
-
build
public AnalyzeResult build()
-
-