Checkstyle Results

The following document contains the results of Checkstyle 6.16 with odl_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
5 0 234 0

Rules

Category Rule Violations Severity
blocks LeftCurly
  • maxLineLength: "100"
5  Warning
RightCurly
  • tokens: "CLASS_DEF, METHOD_DEF, CTOR_DEF, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO, STATIC_INIT, INSTANCE_INIT"
  • option: "alone"
4  Warning
RightCurly 4  Warning
coding OverloadMethodsDeclarationOrder 1  Warning
VariableDeclarationUsageDistance 23  Warning
imports CustomImportOrder
  • thirdPartyPackageRegExp: ".*"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
6  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "4"
  • caseIndent: "4"
  • basicOffset: "4"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
12  Warning
javadoc JavadocParagraph
  • allowNewlineParagraph: "false"
1  Warning
JavadocStyle
  • tokens: "ANNOTATION_DEF, ANNOTATION_FIELD_DEF, CLASS_DEF, CTOR_DEF, ENUM_CONSTANT_DEF, ENUM_DEF, INTERFACE_DEF, METHOD_DEF, VARIABLE_DEF"
  • checkEmptyJavadoc: "true"
56  Warning
JavadocTagContinuationIndentation 4  Warning
NonEmptyAtclauseDescription 4  Warning
modifier ModifierOrder 2  Warning
naming AbbreviationAsWordInName
  • ignoreFinal: "false"
  • allowedAbbreviationLength: "4"
1  Warning
LocalVariableName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
12  Warning
ParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
9  Warning
sizes LineLength
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
20  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
  • tokens: "IMPORT, CLASS_DEF, INTERFACE_DEF, ENUM_DEF, STATIC_INIT, INSTANCE_INIT, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"
8  Warning
MethodParamPad 1  Warning
OperatorWrap
  • tokens: "BAND, BOR, BSR, BXOR, DIV, EQUAL, GE, GT, LAND, LE, LITERAL_INSTANCEOF, LOR, LT, MINUS, MOD, NOT_EQUAL, PLUS, QUESTION, SL, SR, STAR "
  • option: "NL"
1  Warning
ParenPad 1  Warning
WhitespaceAround
  • allowEmptyConstructors: "true"
  • allowEmptyMethods: "true"
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
11  Warning

Details

org/opendaylight/netvirt/utils/mdsal/openflow/ActionUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.action.rev140714.dst.choice.grouping.dst.choice.DstNxNsiCaseBuilder' import. Should be before 'org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.action.rev140714.dst.choice.grouping.dst.choice.DstNxNspCaseBuilder'. 58
 Warning naming LocalVariableName Local variable name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 194
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 241
 Warning naming LocalVariableName Local variable name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 278
 Warning sizes LineLength Line is longer than 120 characters (found 171). 283
 Warning naming LocalVariableName Local variable name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 335
 Warning sizes LineLength Line is longer than 120 characters (found 175). 336
 Warning naming LocalVariableName Local variable name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 358
 Warning naming LocalVariableName Local variable name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 364
 Warning naming LocalVariableName Local variable name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 370
 Warning naming LocalVariableName Local variable name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 481
 Warning sizes LineLength Line is longer than 120 characters (found 173). 487
 Warning naming LocalVariableName Local variable name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 506
 Warning javadoc JavadocStyle First sentence should end with a period. 515
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 535
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 538
 Warning naming LocalVariableName Local variable name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 541
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not preceded with whitespace. 541
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not followed by whitespace. 541
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not preceded with whitespace. 541
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not followed by whitespace. 541
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 563
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 564
 Warning naming AbbreviationAsWordInName Abbreviation in name 'HEXES' must contain no more than '4' capital letters. 567
 Warning whitespace OperatorWrap '+' should be on a new line. 572

org/opendaylight/netvirt/utils/mdsal/openflow/FlowUtils.java

Severity Category Rule Message Line
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 40
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 41
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '51'. 59
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not preceded with whitespace. 100
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not followed by whitespace. 100
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not preceded with whitespace. 115
 Warning whitespace WhitespaceAround WhitespaceAround: '|' is not followed by whitespace. 115
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 156

org/opendaylight/netvirt/utils/mdsal/openflow/InstructionUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.match.VlanMatchBuilder' import. Should be before 'org.opendaylight.yang.gen.v1.urn.opendaylight.model.match.types.rev131026.vlan.match.fields.VlanIdBuilder'. 78
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 88
 Warning javadoc JavadocStyle First sentence should end with a period. 88
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 97
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 120
 Warning javadoc JavadocStyle First sentence should end with a period. 120
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 5, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 130
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 152
 Warning javadoc JavadocStyle First sentence should end with a period. 152
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 5, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 160
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 181
 Warning javadoc JavadocStyle First sentence should end with a period. 181
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 197
 Warning javadoc JavadocStyle First sentence should end with a period. 197
 Warning indentation Indentation 'for' child have incorrect indentation level 24, expected level should be 20. 219
 Warning coding VariableDeclarationUsageDistance Distance between variable 'ncid' declaration and its first usage is 13, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 308
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. 360
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 11, expected level should be 12. 371
 Warning sizes LineLength Line is longer than 120 characters (found 124). 402
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 434
 Warning javadoc JavadocStyle First sentence should end with a period. 434
 Warning sizes LineLength Line is longer than 120 characters (found 131). 448
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 545
 Warning javadoc JavadocStyle First sentence should end with a period. 545
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 4, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 554
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 581
 Warning javadoc JavadocStyle First sentence should end with a period. 581
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 607
 Warning javadoc JavadocStyle First sentence should end with a period. 607
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 642
 Warning javadoc JavadocStyle First sentence should end with a period. 642
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 651
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 673
 Warning javadoc JavadocStyle First sentence should end with a period. 673
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 684
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 712
 Warning javadoc JavadocStyle First sentence should end with a period. 712
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 741
 Warning javadoc JavadocStyle First sentence should end with a period. 741
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 759
 Warning javadoc JavadocStyle First sentence should end with a period. 759
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 768
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 790
 Warning javadoc JavadocStyle First sentence should end with a period. 790
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 799
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 821
 Warning javadoc JavadocStyle First sentence should end with a period. 821
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 830
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 852
 Warning javadoc JavadocStyle First sentence should end with a period. 852
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 861
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 883
 Warning javadoc JavadocStyle First sentence should end with a period. 883
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 892
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 914
 Warning javadoc JavadocStyle First sentence should end with a period. 914
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 924
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 946
 Warning javadoc JavadocStyle First sentence should end with a period. 946
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 954
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 976
 Warning javadoc JavadocStyle First sentence should end with a period. 976
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1004
 Warning javadoc JavadocStyle First sentence should end with a period. 1004
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 7, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 1012
 Warning coding VariableDeclarationUsageDistance Distance between variable 'ab' declaration and its first usage is 4, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 1013
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1034
 Warning javadoc JavadocStyle First sentence should end with a period. 1034
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 1042
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1063
 Warning javadoc JavadocStyle First sentence should end with a period. 1063
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 1071
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1091
 Warning javadoc JavadocStyle First sentence should end with a period. 1091
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 1099
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1119
 Warning javadoc JavadocStyle First sentence should end with a period. 1119
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 1127
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1153
 Warning javadoc JavadocStyle First sentence should end with a period. 1153
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 6, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 1161
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1187
 Warning javadoc JavadocStyle First sentence should end with a period. 1187
 Warning sizes LineLength Line is longer than 120 characters (found 134). 1194
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 5, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 1218
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 1221
 Warning coding VariableDeclarationUsageDistance Distance between variable 'actionList' declaration and its first usage is 5, but allowed 3. Consider to make that variable as final if you still need to store its value in advance (before method calls that might do side effect on original value). 1243
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 1246
 Warning sizes LineLength Line is longer than 120 characters (found 125). 1266
 Warning sizes LineLength Line is longer than 120 characters (found 156). 1292
 Warning sizes LineLength Line is longer than 120 characters (found 123). 1296
 Warning javadoc JavadocStyle First sentence should end with a period. 1342
 Warning sizes LineLength Line is longer than 120 characters (found 123). 1345
 Warning sizes LineLength Line is longer than 120 characters (found 121). 1349
 Warning sizes LineLength Line is longer than 120 characters (found 123). 1353

org/opendaylight/netvirt/utils/mdsal/openflow/MatchUtils.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.nxm.nx.nsp.grouping.NxmNxNspBuilder' import. Should be before 'org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.nxm.nx.tun.id.grouping.NxmNxTunIdBuilder'. 84
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.nxm.nx.nsi.grouping.NxmNxNsiBuilder' import. Should be before 'org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.nxm.nx.tun.id.grouping.NxmNxTunIdBuilder'. 85
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.nxm.of.tcp.dst.grouping.NxmOfTcpDstBuilder' import. Should be before 'org.opendaylight.yang.gen.v1.urn.opendaylight.openflowplugin.extension.nicira.match.rev140714.nxm.of.tcp.src.grouping.NxmOfTcpSrcBuilder'. 87
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 122
 Warning javadoc JavadocStyle First sentence should end with a period. 122
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 151
 Warning javadoc JavadocStyle First sentence should end with a period. 151
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 190
 Warning javadoc JavadocStyle First sentence should end with a period. 190
 Warning naming ParameterName Parameter name 'sMacAddr' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 197
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 208
 Warning javadoc JavadocStyle First sentence should end with a period. 208
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 226
 Warning javadoc JavadocStyle First sentence should end with a period. 226
 Warning naming ParameterName Parameter name 'dMacAddr' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 233
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 247
 Warning javadoc JavadocStyle First sentence should end with a period. 247
 Warning sizes LineLength Line is longer than 120 characters (found 140). 256
 Warning naming ParameterName Parameter name 'sMacAddr' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 256
 Warning naming ParameterName Parameter name 'dMacAddr' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 256
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 273
 Warning javadoc JavadocStyle First sentence should end with a period. 273
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 289
 Warning javadoc JavadocStyle First sentence should end with a period. 289
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 317
 Warning javadoc JavadocStyle First sentence should end with a period. 317
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 343
 Warning javadoc JavadocStyle Javadoc has empty description section. 343
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 365
 Warning javadoc JavadocStyle Javadoc has empty description section. 365
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 402
 Warning javadoc JavadocStyle Javadoc has empty description section. 402
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 423
 Warning javadoc JavadocStyle First sentence should end with a period. 423
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 450
 Warning javadoc JavadocStyle First sentence should end with a period. 450
 Warning javadoc JavadocStyle First sentence should end with a period. 476
 Warning javadoc JavadocParagraph <p> tag should be preceded with an empty line. 483
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 484
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 485
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 486
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 487
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 515
 Warning javadoc JavadocStyle Javadoc has empty description section. 515
 Warning sizes LineLength Line is longer than 120 characters (found 126). 518
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 532
 Warning javadoc JavadocStyle First sentence should end with a period. 532
 Warning blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 550
 Warning blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 553
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 561
 Warning javadoc JavadocStyle First sentence should end with a period. 561
 Warning sizes LineLength Line is longer than 120 characters (found 135). 570
 Warning indentation Indentation '.' have incorrect indentation level 12, expected level should be 16. 578
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 591
 Warning javadoc JavadocStyle First sentence should end with a period. 591
 Warning blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 609
 Warning blocks RightCurly '}' at column 9 should be on the same line as the next part of a multi-block statement (one that directly contains multiple blocks: if/else-if/else or try/catch/finally). 612
 Warning naming ParameterName Parameter name 'dMacAddr' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 870
 Warning naming ParameterName Parameter name 'dMacAddr' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1001
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1081
 Warning javadoc JavadocStyle Javadoc has empty description section. 1081
 Warning naming ParameterName Parameter name 'dMacAddr' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1085
 Warning sizes LineLength Line is longer than 120 characters (found 124). 1257
 Warning sizes LineLength Line is longer than 120 characters (found 124). 1282
 Warning sizes LineLength Line is longer than 120 characters (found 124). 1307
 Warning blocks LeftCurly '{' at column 5 should be on the previous line. 1308
 Warning indentation Indentation '.' have incorrect indentation level 12, expected level should be 16. 1315
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 1333
 Warning sizes LineLength Line is longer than 120 characters (found 145). 1333
 Warning blocks LeftCurly '{' at column 5 should be on the previous line. 1334
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 1350
 Warning sizes LineLength Line is longer than 120 characters (found 145). 1350
 Warning blocks LeftCurly '{' at column 5 should be on the previous line. 1351
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 1365
 Warning blocks LeftCurly '{' at column 5 should be on the previous line. 1366
 Warning indentation Indentation '.' have incorrect indentation level 12, expected level should be 16. 1371
 Warning blocks LeftCurly '{' at column 5 should be on the previous line. 1389
 Warning indentation Indentation '.' have incorrect indentation level 12, expected level should be 16. 1396
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1448
 Warning javadoc JavadocStyle First sentence should end with a period. 1448
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 1451
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1462
 Warning javadoc JavadocStyle First sentence should end with a period. 1462
 Warning javadoc JavadocStyle First sentence should end with a period. 1510
 Warning naming ParameterName Parameter name 'ct_state' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1585
 Warning indentation Indentation '.' have incorrect indentation level 8, expected level should be 12. 1590
 Warning indentation Indentation '.' have incorrect indentation level 8, expected level should be 12. 1591
 Warning indentation Indentation '.' have incorrect indentation level 8, expected level should be 12. 1593
 Warning naming ParameterName Parameter name 'ct_zone' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1601
 Warning indentation Indentation '.' have incorrect indentation level 8, expected level should be 12. 1605
 Warning indentation Indentation '.' have incorrect indentation level 8, expected level should be 12. 1606
 Warning indentation Indentation '.' have incorrect indentation level 8, expected level should be 12. 1608
 Warning whitespace EmptyLineSeparator 'CTOR_DEF' should be separated from previous statement. 1619
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 1624
 Warning naming LocalVariableName Local variable name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1664
 Warning naming LocalVariableName Local variable name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1677
 Warning whitespace ParenPad ')' is preceded with whitespace. 1715
 Warning naming LocalVariableName Local variable name 'm' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 1729
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1757
 Warning javadoc JavadocStyle First sentence should end with a period. 1757
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1767
 Warning javadoc JavadocStyle First sentence should end with a period. 1767
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 1828
 Warning javadoc JavadocStyle First sentence should end with a period. 1828

org/opendaylight/netvirt/utils/mdsal/openflow/MatchUtilsTest.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder 'org.junit.Test' should be separated from previous import group. 11
 Warning whitespace MethodParamPad '(' is preceded with whitespace. 16