public RuleSet(RuleSet rs)
public static RuleSet forSingleRule(Rule rule)
Creates a new ruleset containing a single rule. The ruleset will have default description, name, and null file name.
rule
- The rule being created
public static RuleSet create(String name, String description, String fileName, Collection<Pattern> excludePatterns, Collection<Pattern> includePatterns, Iterable<? extends Rule> rules)
Note: The rule instances are shared between the collection and the new ruleset (copy-by-reference). This might lead to concurrency issues, if the rules of the collection are also referenced by other rulesets and used in different threads.
name
- the name of the ruleset
description
- the description
fileName
- the filename
excludePatterns
- list of exclude patterns
includePatterns
- list of include patterns, that override the exclude patterns
rules
- the collection with the rules to add to the new ruleset
NullPointerException
- If any parameter is null, or the collections contain null elements
public static RuleSet copy(RuleSet original)
Note: The rule instances are shared between the original and the new ruleset (copy-by-reference). This might lead to concurrency issues, if the original ruleset and the new ruleset are used in different threads.
original
- the original rule set to copy from
public int size()
Returns the number of rules in this ruleset
public Collection<Rule> getRules()
Returns the actual Collection of rules in this ruleset
Rule
public Rule getRuleByName(String ruleName)
Returns the first Rule found with the given name (case-sensitive). Note: Since we support multiple languages, rule names are not expected to be unique within any specific ruleset.
ruleName
- the exact name of the rule to find
public boolean equals(Object o)
Two rulesets are equals, if they have the same name and contain the same rules.
public String getFileName()
public String getName()
public String getDescription()
public List<Pattern> getFileExclusions()
Returns the file exclusion patterns as an unmodifiable list.
public List<Pattern> getFileInclusions()
Returns the file inclusion patterns as an unmodifiable list.
public void removeDysfunctionalRules(Collection<Rule> collector)
Remove and collect any misconfigured rules.
collector
- the removed rules will be added to this collection
public long getChecksum()
Description copied from interface: net.sourceforge.pmd.cache.internal.ChecksumAware
Retrieves the current instance checksum
getChecksum
in interface net.sourceforge.pmd.cache.internal.ChecksumAware
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4