Groovy Documentation

groovy.org.codenarc.rule.dry
[Groovy] Class DuplicateNumberLiteralRule

java.lang.Object
  org.codenarc.rule.AbstractAstVisitorRule
      groovy.org.codenarc.rule.dry.DuplicateNumberLiteralRule

class DuplicateNumberLiteralRule
extends AbstractAstVisitorRule

Checks for duplication of constant number literal values.

Set the optional ignoreNumbers property to a comma-separated list (String) of the numbers that should be ignored by this rule (i.e., not cause a violation). This property defaults to "0,1" to ignore the constants zero and one. By default, this rule does not apply to test files.

Authors:
Chris Mair


Property Summary
String doNotApplyToFilesMatching

String ignoreNumbers

String name

int priority

 
Method Summary
AstVisitor getAstVisitor()

 

Property Detail

doNotApplyToFilesMatching

String doNotApplyToFilesMatching


ignoreNumbers

String ignoreNumbers


name

String name


priority

int priority


 
Method Detail

getAstVisitor

@Override
AstVisitor getAstVisitor()


 

Groovy Documentation