Fork me on GitHub

Checkstyle Results

The following document contains the results of Checkstyle 7.2 with google_checks.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
20 0 645 0

Rules

Category Rule Violations Severity
blocks EmptyCatchBlock
  • exceptionVariableName: "expected"
1  Warning
LeftCurly
  • maxLineLength: "100"
5  Warning
NeedBraces 22  Warning
RightCurly
  • tokens: "CLASS_DEF, METHOD_DEF, CTOR_DEF, LITERAL_FOR, LITERAL_WHILE, LITERAL_DO, STATIC_INIT, INSTANCE_INIT"
  • option: "alone"
15  Warning
RightCurly 15  Warning
coding OverloadMethodsDeclarationOrder 3  Warning
imports CustomImportOrder
  • sortImportsInGroupAlphabetically: "true"
  • specialImportsRegExp: "com.google"
  • customImportOrderRules: "STATIC###SPECIAL_IMPORTS###THIRD_PARTY_PACKAGE###STANDARD_JAVA_PACKAGE"
22  Warning
indentation CommentsIndentation 1  Warning
Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "2"
  • caseIndent: "2"
  • basicOffset: "2"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
105  Warning
javadoc AtclauseOrder
  • tagOrder: "@param, @return, @throws, @deprecated"
  • target: "CLASS_DEF, INTERFACE_DEF, ENUM_DEF, METHOD_DEF, CTOR_DEF, VARIABLE_DEF"
1  Warning
JavadocMethod
  • scope: "public"
  • allowMissingThrowsTags: "true"
  • allowThrowsTagsForSubclasses: "true"
  • allowMissingReturnTag: "true"
  • allowMissingParamTags: "true"
  • minLineCount: "2"
  • allowedAnnotations: "Override, Test"
7  Warning
JavadocParagraph 9  Warning
NonEmptyAtclauseDescription 56  Warning
SummaryJavadoc
  • forbiddenSummaryFragments: "^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"
72  Warning
modifier ModifierOrder 3  Warning
naming AbbreviationAsWordInName
  • ignoreFinal: "false"
  • allowedAbbreviationLength: "1"
3  Warning
CatchParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
14  Warning
LocalVariableName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
  • allowOneCharVarInForLoop: "true"
  • tokens: "VARIABLE_DEF"
6  Warning
ParameterName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
17  Warning
sizes LineLength
  • max: "100"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
116  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
8  Warning
WhitespaceAround
  • allowEmptyConstructors: "true"
  • allowEmptyMethods: "true"
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
159  Warning

Details

org/apache/streams/local/LocalRuntimeConfiguration.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnyGetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 9
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonAnySetter' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 10
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonIgnore' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 11
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonInclude' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 12
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonProperty' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 13
 Warning imports CustomImportOrder Import statement for 'com.fasterxml.jackson.annotation.JsonPropertyOrder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 14
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.EqualsBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 15
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.HashCodeBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 16
 Warning imports CustomImportOrder Import statement for 'org.apache.commons.lang3.builder.ToStringBuilder' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 17
 Warning imports CustomImportOrder Import statement for 'org.apache.streams.config.StreamsConfiguration' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 18
 Warning imports CustomImportOrder Import statement for 'org.apache.streams.local.monitoring.MonitoringConfiguration' is in the wrong order. Should be in the 'THIRD_PARTY_PACKAGE' group, expecting not assigned imports on this line. 19
 Warning indentation Indentation '}' have incorrect indentation level 0, expected level should be 4. 31
 Warning blocks LeftCurly '{' at column 1 should be on the previous line. 35
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 37
 Warning javadoc JavadocParagraph <p> tag should be placed immediately before the first word, with no space after. 39
 Warning javadoc JavadocParagraph <p> tag should be preceded with an empty line. 39
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 43
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 46
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 50
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 52
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 56
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 58
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 62
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 64
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 68
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 70
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 74
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 76
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 82
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 85
 Warning javadoc JavadocParagraph <p> tag should be placed immediately before the first word, with no space after. 87
 Warning javadoc JavadocParagraph <p> tag should be preceded with an empty line. 87
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 96
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 98
 Warning javadoc JavadocParagraph <p> tag should be placed immediately before the first word, with no space after. 100
 Warning javadoc JavadocParagraph <p> tag should be preceded with an empty line. 100
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 106
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 108
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 109
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 111
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 112
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 113
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 114
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 116
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 122
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 124
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 125
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 127
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 133
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 135
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 136
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 138
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 139
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 141
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 143
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 149
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 152
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 154
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 160
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 162
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 163
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 165
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 166
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 167
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 168
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 170
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 176
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 178
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 179
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 181
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 187
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 189
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 190
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 192
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 193
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 194
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 195
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 197
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 203
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 205
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 206
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 208
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 214
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 216
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 217
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 219
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 220
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 221
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 222
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 224
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 230
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 232
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 233
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 235
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 241
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 243
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 244
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 246
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 247
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 248
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 249
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 251
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 257
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 259
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 260
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 262
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 268
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 270
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 271
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 273
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 274
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 275
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 276
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 278
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 280
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 281
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 283
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 285
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 286
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 288
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 290
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 291
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 293
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 294
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 295
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 296
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 298
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 300
 Warning sizes LineLength Line is longer than 100 characters (found 268). 300
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 301
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 303
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 305
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 306
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 307
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 308
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 309
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 310
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 311
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 312
 Warning sizes LineLength Line is longer than 100 characters (found 458). 312
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 313

org/apache/streams/local/builders/LocalStreamBuilder.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.ObjectMapper' import. Should be before 'org.apache.streams.monitoring.tasks.BroadcastMonitorThread'. 41
 Warning imports CustomImportOrder Import statement for 'com.google.common.util.concurrent.Uninterruptibles' is in the wrong order. Should be in the 'SPECIAL_IMPORTS' group, expecting group 'STANDARD_JAVA_PACKAGE' on this line. 42
 Warning sizes LineLength Line is longer than 100 characters (found 122). 58
 Warning sizes LineLength Line is longer than 100 characters (found 116). 59
 Warning sizes LineLength Line is longer than 100 characters (found 111). 60
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 91
 Warning sizes LineLength Line is longer than 100 characters (found 118). 95
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 98
 Warning sizes LineLength Line is longer than 100 characters (found 103). 99
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 100
 Warning sizes LineLength Line is longer than 100 characters (found 106). 109
 Warning sizes LineLength Line is longer than 100 characters (found 105). 121
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 124
 Warning blocks NeedBraces 'if' construct must use '{}'s. 133
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 133
 Warning sizes LineLength Line is longer than 100 characters (found 117). 134
 Warning blocks NeedBraces 'if' construct must use '{}'s. 135
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 135
 Warning sizes LineLength Line is longer than 100 characters (found 106). 136
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 137
 Warning sizes LineLength Line is longer than 100 characters (found 106). 139
 Warning blocks NeedBraces 'if' construct must use '{}'s. 140
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 140
 Warning sizes LineLength Line is longer than 100 characters (found 150). 141
 Warning javadoc JavadocMethod Missing a Javadoc comment. 146
 Warning javadoc JavadocMethod Missing a Javadoc comment. 155
 Warning blocks NeedBraces 'if' construct must use '{}'s. 176
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 176
 Warning blocks NeedBraces 'if' construct must use '{}'s. 186
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 186
 Warning blocks NeedBraces 'if' construct must use '{}'s. 196
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 196
 Warning sizes LineLength Line is longer than 100 characters (found 110). 202
 Warning blocks NeedBraces 'if' construct must use '{}'s. 206
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 206
 Warning sizes LineLength Line is longer than 100 characters (found 115). 213
 Warning sizes LineLength Line is longer than 100 characters (found 101). 219
 Warning sizes LineLength Line is longer than 100 characters (found 119). 223
 Warning sizes LineLength Line is longer than 100 characters (found 177). 225
 Warning blocks NeedBraces 'if' construct must use '{}'s. 229
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 229
 Warning sizes LineLength Line is longer than 100 characters (found 124). 235
 Warning sizes LineLength Line is longer than 100 characters (found 174). 237
 Warning blocks NeedBraces 'if' construct must use '{}'s. 241
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 241
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 268
 Warning sizes LineLength Line is longer than 100 characters (found 107). 269
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 271
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 274
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 276
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 277
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 283
 Warning sizes LineLength Line is longer than 100 characters (found 112). 284
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 288
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 288
 Warning whitespace WhitespaceAround WhitespaceAround: 'finally' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 291
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 291
 Warning sizes LineLength Line is longer than 100 characters (found 102). 293
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 312
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 313
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 315
 Warning sizes LineLength Line is longer than 100 characters (found 108). 323
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 323
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 323
 Warning sizes LineLength Line is longer than 100 characters (found 106). 326
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 326
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 326
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not preceded with whitespace. 329
 Warning whitespace WhitespaceAround WhitespaceAround: '}' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 329
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 343
 Warning sizes LineLength Line is longer than 100 characters (found 153). 347
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 347
 Warning sizes LineLength Line is longer than 100 characters (found 102). 349
 Warning sizes LineLength Line is longer than 100 characters (found 151). 351
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 351
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 358
 Warning sizes LineLength Line is longer than 100 characters (found 113). 361
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 365
 Warning sizes LineLength Line is longer than 100 characters (found 108). 366
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 373
 Warning sizes LineLength Line is longer than 100 characters (found 113). 376
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 377
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not preceded with whitespace. 377
 Warning whitespace WhitespaceAround WhitespaceAround: '=' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 377
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 383
 Warning sizes LineLength Line is longer than 100 characters (found 110). 384
 Warning sizes LineLength Line is longer than 100 characters (found 113). 394
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 398
 Warning sizes LineLength Line is longer than 100 characters (found 123). 400
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 402
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 404
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 407
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 408
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 413
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 414
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 416
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 420
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 422
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 427
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 434
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 435
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 454
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 459
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 462
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 470
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 472
 Warning blocks RightCurly '}' at column 7 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, do/while or try/catch/finally). 474
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 475
 Warning blocks RightCurly '}' at column 7 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, do/while or try/catch/finally). 477
 Warning sizes LineLength Line is longer than 100 characters (found 101). 479
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 479
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 479
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 479
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 479
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 487
 Warning sizes LineLength Line is longer than 100 characters (found 104). 488
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 488
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 488
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 488
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 488
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 489
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 490
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 490
 Warning sizes LineLength Line is longer than 100 characters (found 102). 495
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 501
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 502

org/apache/streams/local/builders/StreamComponent.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 100 characters (found 120). 48
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 72
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 74
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 75
 Warning sizes LineLength Line is longer than 100 characters (found 117). 77
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 85
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 87
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 88
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 89
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 90
 Warning sizes LineLength Line is longer than 100 characters (found 128). 92
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 103
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 105
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 106
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 107
 Warning sizes LineLength Line is longer than 100 characters (found 119). 109
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 116
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 118
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 119
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 120
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 121
 Warning sizes LineLength Line is longer than 100 characters (found 151). 123
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 132
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 134
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 135
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 136
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 137
 Warning sizes LineLength Line is longer than 100 characters (found 152). 139
 Warning sizes LineLength Line is longer than 100 characters (found 110). 155
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 171
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 179
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 187
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 195
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 197
 Warning sizes LineLength Line is longer than 100 characters (found 113). 204
 Warning javadoc AtclauseOrder At-clauses have to appear in the order '[@param, @return, @throws, @deprecated]'. 208
 Warning sizes LineLength Line is longer than 100 characters (found 102). 208
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 212
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 213
 Warning sizes LineLength Line is longer than 100 characters (found 111). 214
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 216
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 222
 Warning blocks RightCurly '}' at column 5 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, do/while or try/catch/finally). 226
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 227
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 228
 Warning sizes LineLength Line is longer than 100 characters (found 111). 229
 Warning blocks RightCurly '}' at column 5 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, do/while or try/catch/finally). 235
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 236
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 238
 Warning blocks NeedBraces 'if' construct must use '{}'s. 243
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 243
 Warning blocks NeedBraces 'if' construct must use '{}'s. 245
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 245
 Warning blocks NeedBraces 'else' construct must use '{}'s. 247
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 250
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 253
 Warning blocks RightCurly '}' at column 5 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, do/while or try/catch/finally). 256
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 261
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 272
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 274
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 286
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 291
 Warning blocks RightCurly '}' at column 5 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, do/while or try/catch/finally). 293
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 294
 Warning blocks RightCurly '}' at column 5 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, do/while or try/catch/finally). 296
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 297
 Warning blocks RightCurly '}' at column 5 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, do/while or try/catch/finally). 299

org/apache/streams/local/counters/DatumStatusCounter.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 18
 Warning imports CustomImportOrder Wrong lexicographical order for 'net.jcip.annotations.ThreadSafe' import. Should be before 'org.apache.streams.util.ComponentUtils'. 23
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 29
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 33
 Warning sizes LineLength Line is longer than 100 characters (found 125). 35
 Warning javadoc JavadocMethod Missing a Javadoc comment. 45
 Warning sizes LineLength Line is longer than 100 characters (found 107). 48
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 72

org/apache/streams/local/counters/DatumStatusCounterMXBean.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 18
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 20
 Warning naming AbbreviationAsWordInName Abbreviation in name 'DatumStatusCounterMXBean' must contain no more than '1' capital letters. 23
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 25
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 31

org/apache/streams/local/counters/StreamsTaskCounter.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 18
 Warning imports CustomImportOrder Wrong lexicographical order for 'net.jcip.annotations.GuardedBy' import. Should be before 'org.apache.streams.util.ComponentUtils'. 23
 Warning imports CustomImportOrder Wrong lexicographical order for 'net.jcip.annotations.ThreadSafe' import. Should be before 'org.apache.streams.util.ComponentUtils'. 24
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 30
 Warning sizes LineLength Line is longer than 100 characters (found 131). 36
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 46
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 48
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 54
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 56
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 67
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 74
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 76
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 82
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 89
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 91
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 97
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 104
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 106
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 112
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 114
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 118
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 127
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 152
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 154

org/apache/streams/local/counters/StreamsTaskCounterMXBean.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 18
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 20
 Warning naming AbbreviationAsWordInName Abbreviation in name 'StreamsTaskCounterMXBean' must contain no more than '1' capital letters. 23
 Warning sizes LineLength Line is longer than 100 characters (found 151). 26
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 44
 Warning sizes LineLength Line is longer than 100 characters (found 115). 45
 Warning sizes LineLength Line is longer than 100 characters (found 108). 52
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 53
 Warning sizes LineLength Line is longer than 100 characters (found 104). 58
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 59

org/apache/streams/local/executors/ShutdownStreamOnUnhandleThrowableThreadPoolExecutor.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 100 characters (found 119). 31
 Warning sizes LineLength Line is longer than 100 characters (found 122). 36
 Warning sizes LineLength Line is longer than 100 characters (found 116). 42
 Warning sizes LineLength Line is longer than 100 characters (found 141). 44
 Warning sizes LineLength Line is longer than 100 characters (found 112). 46
 Warning naming ParameterName Parameter name 'r' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 53
 Warning naming ParameterName Parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 53
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 54

org/apache/streams/local/queues/ThroughputQueue.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 18
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.apache.commons.lang.NotImplementedException' import. Should be before 'org.apache.streams.local.builders.LocalStreamBuilder'. 22
 Warning sizes LineLength Line is longer than 100 characters (found 105). 43
 Warning sizes LineLength Line is longer than 100 characters (found 102). 44
 Warning sizes LineLength Line is longer than 100 characters (found 103). 48
 Warning sizes LineLength Line is longer than 100 characters (found 128). 53
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 66
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 73
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 75
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 76
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 82
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 91
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 93
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 94
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 95
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 110
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 112
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 113
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 114
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 120
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 122
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 123
 Warning sizes LineLength Line is longer than 100 characters (found 101). 134
 Warning sizes LineLength Line is longer than 100 characters (found 104). 151
 Warning sizes LineLength Line is longer than 100 characters (found 139). 154
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 154
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 162
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 171
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 180
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '170'. 185
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 186
 Warning naming LocalVariableName Local variable name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 196
 Warning naming LocalVariableName Local variable name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 203
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 204
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 217
 Warning naming ParameterName Parameter name 'o' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 226
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 235
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 240
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '216'. 244
 Warning naming LocalVariableName Local variable name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 246
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 247
 Warning coding OverloadMethodsDeclarationOrder Overload methods should not be split. Previous overloaded method located at line '201'. 254
 Warning naming LocalVariableName Local variable name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 256
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 257
 Warning naming LocalVariableName Local variable name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 271
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 272
 Warning naming ParameterName Parameter name 'a' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 299
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 304
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 309
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 314
 Warning naming ParameterName Parameter name 'c' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 319
 Warning sizes LineLength Line is longer than 100 characters (found 114). 334
 Warning sizes LineLength Line is longer than 100 characters (found 118). 335
 Warning naming LocalVariableName Local variable name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 355
 Warning sizes LineLength Line is longer than 100 characters (found 105). 383
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 388
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 401
 Warning naming ParameterName Parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 405
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 406
 Warning blocks NeedBraces 'if' construct must use '{}'s. 424
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 431
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 434
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 456
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 466
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 468
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 469
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 473
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 475
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 477

org/apache/streams/local/queues/ThroughputQueueMXBean.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 18
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 20
 Warning naming AbbreviationAsWordInName Abbreviation in name 'ThroughputQueueMXBean' must contain no more than '1' capital letters. 23
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 31
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 43
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 49

org/apache/streams/local/tasks/BaseStreamsTask.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.ObjectMapper' import. Should be before 'org.apache.streams.util.SerializationUtil'. 28
 Warning imports CustomImportOrder Wrong lexicographical order for 'com.fasterxml.jackson.databind.node.ObjectNode' import. Should be before 'org.apache.streams.util.SerializationUtil'. 29
 Warning javadoc JavadocMethod Missing a Javadoc comment. 56
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 59
 Warning sizes LineLength Line is longer than 100 characters (found 120). 89
 Warning blocks RightCurly '}' at column 5 should be alone on a line. 100
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 100
 Warning sizes LineLength Line is longer than 100 characters (found 110). 105
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 107
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 109
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 110
 Warning blocks RightCurly '}' at column 5 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, do/while or try/catch/finally). 112
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 115
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 130
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 134
 Warning sizes LineLength Line is longer than 100 characters (found 124). 142
 Warning sizes LineLength Line is longer than 100 characters (found 121). 143
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 145
 Warning sizes LineLength Line is longer than 100 characters (found 124). 146
 Warning sizes LineLength Line is longer than 100 characters (found 119). 147
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 149
 Warning sizes LineLength Line is longer than 100 characters (found 119). 150
 Warning sizes LineLength Line is longer than 100 characters (found 121). 151
 Warning sizes LineLength Line is longer than 100 characters (found 105). 152
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 154
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 155
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 160
 Warning sizes LineLength Line is longer than 100 characters (found 130). 161
 Warning blocks RightCurly '}' at column 7 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, do/while or try/catch/finally). 162
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 163
 Warning sizes LineLength Line is longer than 100 characters (found 138). 165
 Warning blocks RightCurly '}' at column 7 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, do/while or try/catch/finally). 168
 Warning sizes LineLength Line is longer than 100 characters (found 139). 170
 Warning indentation CommentsIndentation Comment has incorrect indentation level 0, expected is 6, indentation should be the same level as line 175. 173
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 175
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 178
 Warning sizes LineLength Line is longer than 100 characters (found 119). 181
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 187
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 196
 Warning blocks NeedBraces 'if' construct must use '{}'s. 198
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 198
 Warning blocks NeedBraces 'else' construct must use '{}'s. 200

org/apache/streams/local/tasks/LocalStreamProcessMonitorThread.java

Severity Category Rule Message Line
 Warning blocks LeftCurly '{' at column 1 should be on the previous line. 30
 Warning sizes LineLength Line is longer than 100 characters (found 102). 31
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 45
 Warning blocks LeftCurly '{' at column 3 should be on the previous line. 56
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 57
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 57
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 60
 Warning blocks LeftCurly '{' at column 7 should be on the previous line. 79
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not preceded with whitespace. 80
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 80
 Warning blocks RightCurly '}' at column 7 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, do/while or try/catch/finally). 81
 Warning blocks EmptyCatchBlock Empty catch block. 82
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 82
 Warning blocks LeftCurly '{' at column 7 should be on the previous line. 83
 Warning javadoc JavadocMethod Missing a Javadoc comment. 87
 Warning blocks NeedBraces 'if' construct must use '{}'s. 89
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not preceded with whitespace. 91
 Warning whitespace WhitespaceAround WhitespaceAround: '-' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 91

org/apache/streams/local/tasks/StatusCounterMonitorRunnable.java

Severity Category Rule Message Line
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 24

org/apache/streams/local/tasks/StatusCounterMonitorThread.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 53
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not preceded with whitespace. 72
 Warning whitespace WhitespaceAround WhitespaceAround: '*' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 72
 Warning blocks RightCurly '}' at column 7 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, do/while or try/catch/finally). 73
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 74
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 74

org/apache/streams/local/tasks/StreamsMergeTask.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.apache.commons.lang.NotImplementedException' import. Should be before 'org.apache.streams.local.counters.StreamsTaskCounter'. 25
 Warning sizes LineLength Line is longer than 100 characters (found 112). 30
 Warning javadoc JavadocMethod Missing a Javadoc comment. 44
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 67
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 69
 Warning blocks RightCurly '}' at column 7 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, do/while or try/catch/finally). 75
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 79

org/apache/streams/local/tasks/StreamsPersistWriterTask.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement for 'com.google.common.util.concurrent.Uninterruptibles' is in the wrong order. Should be in the 'SPECIAL_IMPORTS' group, expecting group 'STANDARD_JAVA_PACKAGE' on this line. 30
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 41
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 46
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 72
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 110
 Warning sizes LineLength Line is longer than 100 characters (found 149). 111
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 111
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 113
 Warning sizes LineLength Line is longer than 100 characters (found 105). 119
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 121
 Warning sizes LineLength Line is longer than 100 characters (found 166). 122
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 128
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 135
 Warning sizes LineLength Line is longer than 100 characters (found 106). 136
 Warning sizes LineLength Line is longer than 100 characters (found 101). 143
 Warning sizes LineLength Line is longer than 100 characters (found 103). 146
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 147
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 147
 Warning sizes LineLength Line is longer than 100 characters (found 108). 148
 Warning sizes LineLength Line is longer than 100 characters (found 103). 150
 Warning sizes LineLength Line is longer than 100 characters (found 117). 164
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 164
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 164

org/apache/streams/local/tasks/StreamsProcessorTask.java

Severity Category Rule Message Line
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 40
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 45
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 63
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 71
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 72
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 73
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 113
 Warning sizes LineLength Line is longer than 100 characters (found 152). 114
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 114
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 116
 Warning sizes LineLength Line is longer than 100 characters (found 104). 122
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 124
 Warning sizes LineLength Line is longer than 100 characters (found 169). 125
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 131
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 137
 Warning whitespace WhitespaceAround WhitespaceAround: 'for' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 138
 Warning sizes LineLength Line is longer than 100 characters (found 106). 145
 Warning naming CatchParameterName Catch parameter name 't' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 148
 Warning sizes LineLength Line is longer than 100 characters (found 106). 150
 Warning sizes LineLength Line is longer than 100 characters (found 111). 156
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 159
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 159
 Warning sizes LineLength Line is longer than 100 characters (found 101). 160

org/apache/streams/local/tasks/StreamsProviderTask.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Import statement for 'com.google.common.util.concurrent.Uninterruptibles' is in the wrong order. Should be in the 'SPECIAL_IMPORTS' group, expecting group 'STANDARD_JAVA_PACKAGE' on this line. 31
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 43
 Warning modifier ModifierOrder 'static' modifier out of order with the JLS suggestions. 48
 Warning sizes LineLength Line is longer than 100 characters (found 111). 80
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 81
 Warning sizes LineLength Line is longer than 100 characters (found 110). 83
 Warning blocks NeedBraces 'if' construct must use '{}'s. 87
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 87
 Warning blocks NeedBraces 'else' construct must use '{}'s. 89
 Warning sizes LineLength Line is longer than 100 characters (found 117). 96
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 97
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 98
 Warning sizes LineLength Line is longer than 100 characters (found 112). 100
 Warning sizes LineLength Line is longer than 100 characters (found 126). 110
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 111
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 112
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 113
 Warning sizes LineLength Line is longer than 100 characters (found 121). 115
 Warning sizes LineLength Line is longer than 100 characters (found 116). 147
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 147
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 147
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 163
 Warning sizes LineLength Line is longer than 100 characters (found 151). 164
 Warning whitespace WhitespaceAround WhitespaceAround: '+' is not preceded with whitespace. 164
 Warning whitespace WhitespaceAround WhitespaceAround: 'switch' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 166
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 170
 Warning blocks NeedBraces 'if' construct must use '{}'s. 175
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 175
 Warning blocks NeedBraces 'if' construct must use '{}'s. 182
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 182
 Warning blocks NeedBraces 'if' construct must use '{}'s. 184
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 184
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 186
 Warning blocks NeedBraces 'if' construct must use '{}'s. 209
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 209
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 212
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 212
 Warning sizes LineLength Line is longer than 100 characters (found 104). 216
 Warning sizes LineLength Line is longer than 100 characters (found 117). 218
 Warning sizes LineLength Line is longer than 100 characters (found 112). 227
 Warning sizes LineLength Line is longer than 100 characters (found 114). 228
 Warning sizes LineLength Line is longer than 100 characters (found 111). 229
 Warning sizes LineLength Line is longer than 100 characters (found 111). 231
 Warning javadoc JavadocMethod Missing a Javadoc comment. 234
 Warning whitespace WhitespaceAround WhitespaceAround: 'while' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 237
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 239
 Warning whitespace WhitespaceAround WhitespaceAround: 'if' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 242
 Warning whitespace WhitespaceAround WhitespaceAround: 'catch' is not followed by whitespace. Empty blocks may only be represented as {} when not part of a multi-block statement (4.1.3) 247
 Warning naming CatchParameterName Catch parameter name 'e' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 247

org/apache/streams/local/tasks/StreamsTask.java

Severity Category Rule Message Line
 Warning sizes LineLength Line is longer than 100 characters (found 116). 29
 Warning whitespace WhitespaceAround WhitespaceAround: '{' is not preceded with whitespace. 32
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 39
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 46
 Warning whitespace EmptyLineSeparator 'METHOD_DEF' should be separated from previous statement. 48
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 52
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 74