Uses of Interface
com.redhat.parodos.patterndetection.pattern.Pattern
-
Packages that use Pattern Package Description com.redhat.parodos.patterndetection com.redhat.parodos.patterndetection.context com.redhat.parodos.patterndetection.pattern -
-
Uses of Pattern in com.redhat.parodos.patterndetection
Methods in com.redhat.parodos.patterndetection with parameters of type Pattern Modifier and Type Method Description static DetectionResultsPatternDetector. detect(WorkContext context, Pattern[] desiredPatterns)Takes a @see WorkContext and a List of @Pattern reference, performs a Scan on code/configuration to determine if the @see Clue references are present to detect one of the desired @Pattern -
Uses of Pattern in com.redhat.parodos.patterndetection.context
Methods in com.redhat.parodos.patterndetection.context that return types with arguments of type Pattern Modifier and Type Method Description List<Pattern>WorkContextDelegate. getDesiredPatterns(WorkContext context)List<Pattern>WorkContextDelegate. getDetectedPatterns(WorkContext context)List<Pattern>WorkContextDelegate. getDetectedPatterns(WorkReport report)Methods in com.redhat.parodos.patterndetection.context with parameters of type Pattern Modifier and Type Method Description WorkContextDelegate.WorkContextBuilderWorkContextDelegate.WorkContextBuilder. addThisToDesiredPatterns(Pattern pattern)booleanWorkContextDelegate. isThisPatternDetected(Pattern pattern, WorkReport report)Method parameters in com.redhat.parodos.patterndetection.context with type arguments of type Pattern Modifier and Type Method Description WorkContextDelegate.WorkContextBuilderWorkContextDelegate.WorkContextBuilder. addTheseToDesiredPatterns(List<Pattern> newDesiredPatterns) -
Uses of Pattern in com.redhat.parodos.patterndetection.pattern
Classes in com.redhat.parodos.patterndetection.pattern that implement Pattern Modifier and Type Class Description classBasicPatternImplAn implementation of @see Pattern that will serve most Pattern Detection needs allAreRequiredClues - every @see Clue added to this list needs to be detected for the @see Pattern to be considered detected onlyOneIsRequiredClues - only one @see Clue from this list needs to be detected for the @see Pattern to be considered detected If both onlyOneIsRequiredClues and allAreRequiredClues are configured, then all of the @Clue in allAreRequiredClues must be detected AND one of the @see Clue in the onlyOneIsRequiredClues must be detected
-