Uses of Class
net.sourceforge.pmd.RulePriority
-
Packages that use RulePriority Package Description net.sourceforge.pmd This is the PMD programming mistake detector.net.sourceforge.pmd.cli net.sourceforge.pmd.lang.rule -
-
Uses of RulePriority in net.sourceforge.pmd
Methods in net.sourceforge.pmd that return RulePriority Modifier and Type Method Description RulePriority
PMDConfiguration. getMinimumPriority()
Get the minimum priority threshold when loading Rules from RuleSets.RulePriority
Rule. getPriority()
Get the priority of this Rule.static RulePriority
RulePriority. valueOf(int priority)
Get the priority which corresponds to the given number as returned bygetPriority()
.static RulePriority
RulePriority. valueOf(String name)
Returns the enum constant of this type with the specified name.static RulePriority[]
RulePriority. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in net.sourceforge.pmd with parameters of type RulePriority Modifier and Type Method Description static RuleSetFactory
RulesetsFactoryUtils. createFactory(ClassLoader classLoader, RulePriority minimumPriority, boolean warnDeprecated, boolean enableCompatibility)
Deprecated.Use aRuleSetLoader
static RuleSetFactory
RulesetsFactoryUtils. createFactory(RulePriority minimumPriority, boolean warnDeprecated, boolean enableCompatibility)
Deprecated.Use aRuleSetLoader
static RuleSetFactory
RulesetsFactoryUtils. createFactory(RulePriority minimumPriority, boolean warnDeprecated, boolean enableCompatibility, boolean includeDeprecatedRuleReferences)
Deprecated.Use aRuleSetLoader
RuleSetLoader
RuleSetLoader. filterAbovePriority(RulePriority minimumPriority)
Filter loaded rules to only those that match or are above the given priority.void
PMDConfiguration. setMinimumPriority(RulePriority minimumPriority)
Set the minimum priority threshold when loading Rules from RuleSets.void
Rule. setPriority(RulePriority priority)
Set the priority of this Rule.Constructors in net.sourceforge.pmd with parameters of type RulePriority Constructor Description RuleSetFactory(ClassLoader classLoader, RulePriority minimumPriority, boolean warnDeprecated, boolean enableCompatibility)
Deprecated.Use aRuleSetLoader
to build a new factoryRuleSetFactory(ResourceLoader resourceLoader, RulePriority minimumPriority, boolean warnDeprecated, boolean enableCompatibility)
Deprecated.Use aRuleSetLoader
to build a new factory -
Uses of RulePriority in net.sourceforge.pmd.cli
Methods in net.sourceforge.pmd.cli that return RulePriority Modifier and Type Method Description RulePriority
PMDParameters.RulePriorityConverter. convert(String value)
Deprecated.RulePriority
PMDParameters. getMinimumPriority()
Deprecated. -
Uses of RulePriority in net.sourceforge.pmd.lang.rule
Methods in net.sourceforge.pmd.lang.rule that return RulePriority Modifier and Type Method Description RulePriority
RuleReference. getOverriddenPriority()
RulePriority
AbstractDelegateRule. getPriority()
Deprecated.RulePriority
AbstractRule. getPriority()
Methods in net.sourceforge.pmd.lang.rule with parameters of type RulePriority Modifier and Type Method Description void
AbstractDelegateRule. setPriority(RulePriority priority)
Deprecated.void
AbstractRule. setPriority(RulePriority priority)
void
RuleReference. setPriority(RulePriority priority)
Constructors in net.sourceforge.pmd.lang.rule with parameters of type RulePriority Constructor Description MockRule(String name, String description, String message, String ruleSetName, RulePriority priority)
Deprecated.
-