Uses of Class
net.sourceforge.pmd.lang.rule.RulePriority
-
Packages that use RulePriority Package Description net.sourceforge.pmd This is the PMD programming mistake detector.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.Methods in net.sourceforge.pmd with parameters of type RulePriority Modifier and Type Method Description void
PMDConfiguration. setMinimumPriority(RulePriority minimumPriority)
Set the minimum priority threshold when loading Rules from RuleSets. -
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
AbstractRule. getPriority()
RulePriority
Rule. getPriority()
Get the priority of this Rule.RulePriority
RuleReference. getPriority()
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. valueOfNullable(int priority)
Returns the priority which corresponds to the given number as returned bygetPriority()
.static RulePriority
RulePriority. valueOfNullable(String priority)
Returns the priority which corresponds to the given number as returned bygetPriority()
.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.lang.rule with parameters of type RulePriority Modifier and Type Method Description RuleSetLoader
RuleSetLoader. filterAbovePriority(RulePriority minimumPriority)
Filter loaded rules to only those that match or are above the given priority.void
AbstractRule. setPriority(RulePriority priority)
void
Rule. setPriority(RulePriority priority)
Set the priority of this Rule.void
RuleReference. setPriority(RulePriority priority)
-