Checkstyle Results

The following document contains the results of Checkstyle 6.11.2 with file:////Users/gtyagi1/Documents/Work/spring-data-querydsl-value-operators/querydsl-value-operators/build-tools/code_quality/checkstyle.xml ruleset. rss feed

Summary

Files  Info  Warnings  Errors
15 0 1754 0

Files

File  I  W  E
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/BaseExpressionProvider.java 0 282 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/DateTimePathExpressionProviderImpl.java 0 60 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/EnumPathExpressionProviderImpl.java 0 110 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/ExpressionProvider.java 0 93 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/ExpressionProviderFactory.java 0 41 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/NumberPathExpressionProviderImpl.java 0 120 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/Operator.java 0 29 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/OperatorAndValue.java 0 41 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/StringPathExpressionProviderImpl.java 0 101 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslHttpRequestContext.java 0 253 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslHttpRequestContextAwareServletFilter.java 0 187 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslHttpRequestContextHolder.java 0 151 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslHttpRequestContextHolderStrategy.java 0 28 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslPredicateArgumentResolverBeanPostProcessor.java 0 212 0
org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/ThreadLocalQuerydslHttpRequestContextHolderStrategy.java 0 46 0

Rules

Category Rule Violations Severity
blocks LeftCurly
  • maxLineLength: "100"
1  Warning
NeedBraces 6  Warning
imports AvoidStarImport 3  Warning
CustomImportOrder
  • separateLineBetweenGroups: "true"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
36  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "2"
  • caseIndent: "2"
  • basicOffset: "2"
  • braceAdjustment: "0"
  • lineWrappingIndentation: "4"
800  Warning
javadoc JavadocMethod
  • scope: "public"
  • allowMissingThrowsTags: "true"
  • allowThrowsTagsForSubclasses: "true"
  • allowMissingReturnTag: "true"
  • allowMissingParamTags: "true"
  • minLineCount: "2"
  • allowedAnnotations: "Override, Test"
1  Warning
JavadocParagraph 49  Warning
JavadocTagContinuationIndentation 15  Warning
NonEmptyAtclauseDescription 3  Warning
SummaryJavadoc
  • forbiddenSummaryFragments: "^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"
18  Warning
naming AbbreviationAsWordInName
  • ignoreFinal: "false"
  • allowedAbbreviationLength: "1"
4  Warning
LocalVariableName
  • format: "^[a-z]([a-z0-9][a-zA-Z0-9]*)?$"
  • tokens: "VARIABLE_DEF"
3  Warning
MemberName
  • format: "^[a-z][a-z0-9][a-zA-Z0-9]*$"
6  Warning
PackageName
  • format: "^[a-z]+(\.[a-z][a-z0-9][_]*)*$"
15  Warning
ParameterName
  • format: "^[a-z]([a-z0-9][a-zA-Z0-9]*)?$"
2  Warning
sizes LineLength
  • max: "100"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
188  Warning
whitespace EmptyLineSeparator
  • allowNoEmptyLineBetweenFields: "true"
14  Warning
FileTabCharacter
  • eachLine: "true"
582  Error
ParenPad 6  Warning
WhitespaceAround
  • allowEmptyConstructors: "true"
  • allowEmptyMethods: "true"
  • allowEmptyLoops: "true"
  • allowEmptyTypes: "true"
2  Warning

Details

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/BaseExpressionProvider.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.text.MessageFormat' import. Should be before 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators.experimental.QuerydslHttpRequestContextHolder'. 26
 Warning imports AvoidStarImport Using the '.*' form of import should be avoided - java.util.*. 27
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.*' import. Should be before 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators.experimental.QuerydslHttpRequestContextHolder'. 27
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.stream.Collectors' import. Should be before 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators.experimental.QuerydslHttpRequestContextHolder'. 28
 Warning javadoc JavadocParagraph <p> tag should be placed immediately before the first word, with no space after. 34
 Warning javadoc JavadocParagraph <p> tag should be preceded with an empty line. 34
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 47
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 47
 Warning naming MemberName Member name 'SUPPORTED_SINGLE_VALUED_COMPARISON_OPERATORS' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 47
 Warning sizes LineLength Line is longer than 100 characters (found 106). 52
 Warning sizes LineLength Line is longer than 100 characters (found 104). 53
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 4, expected level should be 2. 56
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 64
 Warning indentation Indentation 'if' have incorrect indentation level 27, expected level should be 25. 67
 Warning indentation Indentation 'if' child have incorrect indentation level 31, expected level should be 27. 68
 Warning sizes LineLength Line is longer than 100 characters (found 108). 68
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 27, expected level should be 25. 69
 Warning sizes LineLength Line is longer than 100 characters (found 113). 71
 Warning sizes LineLength Line is longer than 100 characters (found 114). 72
 Warning indentation Indentation 'else' child have incorrect indentation level 31, expected level should be 27. 75
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 27, expected level should be 25. 77
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 96
 Warning sizes LineLength Line is longer than 100 characters (found 109). 103
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 105
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 108
 Warning sizes LineLength Line is longer than 100 characters (found 109). 116
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 118
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 121
 Warning sizes LineLength Line is longer than 100 characters (found 123). 129
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 131
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 134
 Warning sizes LineLength Line is longer than 100 characters (found 109). 142
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 144
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 147
 Warning sizes LineLength Line is longer than 100 characters (found 109). 155
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 157
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 160
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 169
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 172
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 181
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 184
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 193
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 196
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 205
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 208
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 217
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 220
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 226
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 232
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 234
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 236
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 237
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 238
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 239
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 247
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 249
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 250
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 251
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 252
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 253
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 261
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 263
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 264
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 265
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 266
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 267
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 269
 Warning indentation Indentation 'class def modifier' have incorrect indentation level 4, expected level should be 2. 272
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 274
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 275
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 276
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 278
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 278
 Warning naming MemberName Member name 'MULTI_VALUE_LOGICAL_OPERATORS' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 278
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 4. 281
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 12, expected level should be 6. 282
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 12, expected level should be 6. 283
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 12, expected level should be 6. 284
 Warning sizes LineLength Line is longer than 100 characters (found 102). 284
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 4. 285
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 4. 287
 Warning indentation Indentation 'member def type' have incorrect indentation level 12, expected level should be 6. 289
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 289
 Warning naming LocalVariableName Local variable name 'default_operator' must match pattern '^[a-z]([a-z0-9][a-zA-Z0-9]*)?$'. 289
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 6. 296
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 8. 297
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 10. 298
 Warning indentation Indentation 'member def type' have incorrect indentation level 20, expected level should be 10. 298
 Warning sizes LineLength Line is longer than 100 characters (found 115). 299
 Warning sizes LineLength Line is longer than 100 characters (found 114). 300
 Warning indentation Indentation 'while' have incorrect indentation level 20, expected level should be 10. 301
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be 12. 302
 Warning sizes LineLength Line is longer than 100 characters (found 120). 304
 Warning indentation Indentation 'if' child have incorrect indentation level 28, expected level should be 14. 308
 Warning sizes LineLength Line is longer than 100 characters (found 119). 308
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 24, expected level should be 12. 309
 Warning indentation Indentation 'else' child have incorrect indentation level 28, expected level should be 14. 311
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 24, expected level should be 12. 312
 Warning indentation Indentation 'while rcurly' have incorrect indentation level 20, expected level should be 10. 313
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 10. 317
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 8. 318
 Warning indentation Indentation 'for' have incorrect indentation level 20, expected level should be 10. 319
 Warning sizes LineLength Line is longer than 100 characters (found 112). 320
 Warning sizes LineLength Line is longer than 100 characters (found 119). 321
 Warning indentation Indentation 'for' child have incorrect indentation level 24, expected level should be 12. 322
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 24, expected level should be 12. 322
 Warning indentation Indentation 'for' child have incorrect indentation level 24, expected level should be 12. 323
 Warning indentation Indentation 'member def type' have incorrect indentation level 24, expected level should be 12. 323
 Warning sizes LineLength Line is longer than 100 characters (found 110). 324
 Warning sizes LineLength Line is longer than 100 characters (found 107). 325
 Warning blocks NeedBraces 'if' construct must use '{}'s. 326
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be 12. 326
 Warning indentation Indentation 'for' child have incorrect indentation level 24, expected level should be 12. 334
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 24, expected level should be 12. 334
 Warning sizes LineLength Line is longer than 100 characters (found 101). 334
 Warning sizes LineLength Line is longer than 100 characters (found 116). 335
 Warning sizes LineLength Line is longer than 100 characters (found 106). 336
 Warning sizes LineLength Line is longer than 100 characters (found 127). 337
 Warning sizes LineLength Line is longer than 100 characters (found 117). 338
 Warning indentation Indentation 'for' child have incorrect indentation level 24, expected level should be 12. 339
 Warning indentation Indentation 'member def type' have incorrect indentation level 24, expected level should be 12. 339
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be 12. 340
 Warning indentation Indentation 'if' child have incorrect indentation level 28, expected level should be 14. 341
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 24, expected level should be 12. 342
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be 12. 343
 Warning indentation Indentation 'if' child have incorrect indentation level 28, expected level should be 14. 344
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 24, expected level should be 12. 345
 Warning indentation Indentation 'switch' have incorrect indentation level 28, expected level should be 14. 347
 Warning indentation Indentation 'case' child have incorrect indentation level 32, expected level should be 16. 348
 Warning indentation Indentation 'block' child have incorrect indentation level 36, expected level should be 18. 349
 Warning indentation Indentation 'block' child have incorrect indentation level 36, expected level should be 18. 350
 Warning indentation Indentation 'case' child have incorrect indentation level 32, expected level should be 16. 351
 Warning indentation Indentation 'case' child have incorrect indentation level 32, expected level should be 16. 352
 Warning indentation Indentation 'block' child have incorrect indentation level 36, expected level should be 18. 357
 Warning indentation Indentation 'block' child have incorrect indentation level 36, expected level should be 18. 358
 Warning indentation Indentation 'case' child have incorrect indentation level 32, expected level should be 16. 359
 Warning indentation Indentation 'block' child have incorrect indentation level 36, expected level should be 18. 360
 Warning indentation Indentation 'member def type' have incorrect indentation level 36, expected level should be 18. 360
 Warning sizes LineLength Line is longer than 100 characters (found 108). 361
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 52, expected level should be one of the following: 46, 48. 366
 Warning indentation Indentation 'block' child have incorrect indentation level 36, expected level should be 18. 368
 Warning indentation Indentation 'switch rcurly' have incorrect indentation level 28, expected level should be 14. 369
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 24, expected level should be 12. 370
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 20, expected level should be 10. 371
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 16, expected level should be 8. 372
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 6. 374
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 375
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 4. 376
 Warning indentation Indentation 'class def rcurly' have incorrect indentation level 4, expected level should be 2. 377
 Warning indentation Indentation 'class def modifier' have incorrect indentation level 4, expected level should be 2. 384
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 385
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 386
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 387
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 388
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 389
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 4. 390
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 4. 392
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 12, expected level should be 6. 393
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 4. 394
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 4. 396
 Warning sizes LineLength Line is longer than 100 characters (found 117). 396
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 12, expected level should be 6. 397
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 12, expected level should be 6. 398
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 4. 399
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 4. 404
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 405
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 4. 406
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 4. 411
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 412
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 4. 413
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 4. 419
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 420
 Warning indentation Indentation 'member def type' have incorrect indentation level 12, expected level should be 6. 422
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 422
 Warning sizes LineLength Line is longer than 100 characters (found 107). 422
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 424
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 425
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 426
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 6. 427
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 428
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 430
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 6. 431
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 432
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 434
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 435
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 6. 436
 Warning sizes LineLength Line is longer than 100 characters (found 106). 436
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 440
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 6. 441
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 6. 446
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 447
 Warning sizes LineLength Line is longer than 100 characters (found 119). 449
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 6. 455
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 4. 456
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 4. 458
 Warning indentation Indentation 'member def type' have incorrect indentation level 12, expected level should be 6. 459
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 459
 Warning indentation Indentation 'switch' have incorrect indentation level 12, expected level should be 6. 461
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 462
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 463
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 464
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 465
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 466
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 467
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 468
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 469
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 470
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 471
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 472
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 473
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 474
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 475
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 476
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 477
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 478
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 479
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 480
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 481
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 482
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 483
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 484
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 485
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 486
 Warning indentation Indentation 'if' have incorrect indentation level 20, expected level should be 10. 487
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 12. 488
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 20, expected level should be 10. 489
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 490
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 491
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 492
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 493
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 494
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 495
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 496
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 497
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 498
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 499
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 500
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 501
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 502
 Warning indentation Indentation 'case' child have incorrect indentation level 16, expected level should be 8. 503
 Warning indentation Indentation 'block' child have incorrect indentation level 20, expected level should be 10. 504
 Warning indentation Indentation 'switch rcurly' have incorrect indentation level 12, expected level should be 6. 506
 Warning indentation Indentation 'method def' child have incorrect indentation level 12, expected level should be 6. 507
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 4. 508
 Warning indentation Indentation 'class def rcurly' have incorrect indentation level 4, expected level should be 2. 509
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 517
 Warning indentation Indentation 'member def type' have incorrect indentation level 8, expected level should be 4. 518
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 518
 Warning indentation Indentation 'member def type' have incorrect indentation level 8, expected level should be 4. 519
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 519
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 521
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 522
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 523
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 525
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 526
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 527
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 528
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 529
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 537
 Warning sizes LineLength Line is longer than 100 characters (found 115). 537
 Warning indentation Indentation 'member def type' have incorrect indentation level 8, expected level should be 4. 538
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 538
 Warning indentation Indentation 'member def type' have incorrect indentation level 8, expected level should be 4. 539
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 539
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 541
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 543
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 547
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 549
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 550
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 551
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 552
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 553

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/DateTimePathExpressionProviderImpl.java

Severity Category Rule Message Line
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 1
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Arrays' import. Should be before 'org.apache.commons.lang3.Validate'. 7
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Date' import. Should be before 'org.apache.commons.lang3.Validate'. 8
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 4, expected level should be 2. 12
 Warning sizes LineLength Line is longer than 100 characters (found 118). 13
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 4, expected level should be 2. 15
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 17
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 19
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 20
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 25
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 30
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 36
 Warning sizes LineLength Line is longer than 100 characters (found 102). 36
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 41
 Warning sizes LineLength Line is longer than 100 characters (found 104). 41
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 46
 Warning sizes LineLength Line is longer than 100 characters (found 102). 46
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 51
 Warning sizes LineLength Line is longer than 100 characters (found 101). 51
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 66
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 76
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'try' have incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'try' child have incorrect indentation level 12, expected level should be 6. 81
 Warning indentation Indentation 'try' child have incorrect indentation level 12, expected level should be 6. 82
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'catch' child have incorrect indentation level 12, expected level should be 6. 84
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 86
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 91

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/EnumPathExpressionProviderImpl.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'org.apache.commons.lang3.EnumUtils' import. Should be before 'org.apache.commons.lang3.StringUtils'. 24
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.text.MessageFormat' import. Should be before 'org.slf4j.LoggerFactory'. 28
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Arrays' import. Should be before 'org.slf4j.LoggerFactory'. 29
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.List' import. Should be before 'org.slf4j.LoggerFactory'. 30
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.regex.Pattern' import. Should be before 'org.slf4j.LoggerFactory'. 31
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.stream.Collectors' import. Should be before 'org.slf4j.LoggerFactory'. 32
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 34
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 41
 Warning sizes LineLength Line is longer than 100 characters (found 103). 41
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 43
 Warning naming MemberName Member name 'regex_pattern_cache' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 43
 Warning sizes LineLength Line is longer than 100 characters (found 118). 46
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 86, expected level should be one of the following: 78, 80, 82. 47
 Warning sizes LineLength Line is longer than 100 characters (found 117). 47
 Warning indentation Indentation 'method def lcurly' have incorrect indentation level 86, expected level should be one of the following: 78, 80, 82. 48
 Warning sizes LineLength Line is longer than 100 characters (found 101). 48
 Warning blocks LeftCurly '{' at column 87 should be on the previous line. 48
 Warning sizes LineLength Line is longer than 100 characters (found 102). 49
 Warning indentation Indentation 'method def' child have incorrect indentation level 90, expected level should be 88. 50
 Warning sizes LineLength Line is longer than 100 characters (found 117). 50
 Warning sizes LineLength Line is longer than 100 characters (found 139). 51
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 86, expected level should be one of the following: 78, 80, 82. 52
 Warning indentation Indentation 'object def rcurly' have incorrect indentation level 82, expected level should be one of the following: 76, 78, 80. 53
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 4, expected level should be 2. 55
 Warning sizes LineLength Line is longer than 100 characters (found 117). 56
 Warning sizes LineLength Line is longer than 100 characters (found 133). 58
 Warning sizes LineLength Line is longer than 100 characters (found 120). 59
 Warning sizes LineLength Line is longer than 100 characters (found 113). 61
 Warning sizes LineLength Line is longer than 100 characters (found 103). 62
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 74, expected level should be one of the following: 68, 70. 64
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 74, expected level should be one of the following: 68, 70. 65
 Warning indentation Indentation 'array initialization' child have incorrect indentation level 74, expected level should be one of the following: 68, 70. 66
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 72
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 77
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 79
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 83
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 84
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 85
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 87
 Warning sizes LineLength Line is longer than 100 characters (found 101). 87
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 89
 Warning sizes LineLength Line is longer than 100 characters (found 113). 91
 Warning sizes LineLength Line is longer than 100 characters (found 106). 92
 Warning sizes LineLength Line is longer than 100 characters (found 103). 93
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 96
 Warning indentation Indentation 'else' child have incorrect indentation level 12, expected level should be 6. 98
 Warning sizes LineLength Line is longer than 100 characters (found 120). 98
 Warning sizes LineLength Line is longer than 100 characters (found 107). 99
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 101
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 103
 Warning sizes LineLength Line is longer than 100 characters (found 103). 103
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 105
 Warning sizes LineLength Line is longer than 100 characters (found 115). 107
 Warning sizes LineLength Line is longer than 100 characters (found 108). 108
 Warning sizes LineLength Line is longer than 100 characters (found 105). 109
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 112
 Warning indentation Indentation 'else' child have incorrect indentation level 12, expected level should be 6. 114
 Warning sizes LineLength Line is longer than 100 characters (found 120). 114
 Warning sizes LineLength Line is longer than 100 characters (found 110). 115
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 8, expected level should be 4. 116
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 117
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 119
 Warning sizes LineLength Line is longer than 100 characters (found 101). 119
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 121
 Warning sizes LineLength Line is longer than 100 characters (found 113). 123
 Warning sizes LineLength Line is longer than 100 characters (found 106). 124
 Warning sizes LineLength Line is longer than 100 characters (found 103). 125
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 128
 Warning indentation Indentation 'else' child have incorrect indentation level 12, expected level should be 6. 130
 Warning sizes LineLength Line is longer than 100 characters (found 120). 130
 Warning sizes LineLength Line is longer than 100 characters (found 108). 131
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 8, expected level should be 4. 132
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 133
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 135
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 136
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 137
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 143
 Warning indentation Indentation 'else' child have incorrect indentation level 12, expected level should be 6. 145
 Warning sizes LineLength Line is longer than 100 characters (found 120). 145
 Warning sizes LineLength Line is longer than 100 characters (found 106). 146
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 8, expected level should be 4. 147
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 148
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 150
 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 indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 154
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 155
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 156
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 158
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 159
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 160
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 162
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 163
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 164

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/ExpressionProvider.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Optional' import. Should be before 'org.apache.commons.lang3.StringUtils'. 23
 Warning sizes LineLength Line is longer than 100 characters (found 116). 26
 Warning sizes LineLength Line is longer than 100 characters (found 114). 30
 Warning sizes LineLength Line is longer than 100 characters (found 113). 31
 Warning sizes LineLength Line is longer than 100 characters (found 114). 32
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 35
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 36
 Warning sizes LineLength Line is longer than 100 characters (found 107). 42
 Warning sizes LineLength Line is longer than 100 characters (found 113). 52
 Warning sizes LineLength Line is longer than 100 characters (found 117). 53
 Warning sizes LineLength Line is longer than 100 characters (found 116). 56
 Warning sizes LineLength Line is longer than 100 characters (found 109). 58
 Warning sizes LineLength Line is longer than 100 characters (found 113). 59
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 76
 Warning sizes LineLength Line is longer than 100 characters (found 113). 80
 Warning sizes LineLength Line is longer than 100 characters (found 115). 86
 Warning sizes LineLength Line is longer than 100 characters (found 178). 87
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 90
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 91
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 93
 Warning sizes LineLength Line is longer than 100 characters (found 111). 96
 Warning sizes LineLength Line is longer than 100 characters (found 115). 102
 Warning sizes LineLength Line is longer than 100 characters (found 178). 103
 Warning sizes LineLength Line is longer than 100 characters (found 113). 105
 Warning sizes LineLength Line is longer than 100 characters (found 106). 106
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 108
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 110
 Warning sizes LineLength Line is longer than 100 characters (found 118). 118
 Warning sizes LineLength Line is longer than 100 characters (found 113). 119
 Warning sizes LineLength Line is longer than 100 characters (found 106). 120
 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. 123
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 124
 Warning sizes LineLength Line is longer than 100 characters (found 118). 132
 Warning sizes LineLength Line is longer than 100 characters (found 113). 133
 Warning sizes LineLength Line is longer than 100 characters (found 106). 134
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 136
 Warning sizes LineLength Line is longer than 100 characters (found 105). 136
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 137
 Warning indentation Indentation 'for' have incorrect indentation level 12, expected level should be 6. 138
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 8. 139
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 10. 140
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 8. 141
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 12, expected level should be 6. 142
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 143
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 144
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 145
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 147
 Warning sizes LineLength Line is longer than 100 characters (found 108). 151
 Warning sizes LineLength Line is longer than 100 characters (found 125). 152
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 154
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 155
 Warning sizes LineLength Line is longer than 100 characters (found 110). 155
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 158
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 160
 Warning sizes LineLength Line is longer than 100 characters (found 128). 161
 Warning sizes LineLength Line is longer than 100 characters (found 105). 164
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 166
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 167
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 6. 168
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 169
 Warning indentation Indentation 'member def type' have incorrect indentation level 16, expected level should be 8. 169
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 170
 Warning indentation Indentation 'member def type' have incorrect indentation level 16, expected level should be 8. 170
 Warning naming LocalVariableName Local variable name 'opening_bracket' must match pattern '^[a-z]([a-z0-9][a-zA-Z0-9]*)?$'. 170
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 171
 Warning indentation Indentation 'member def type' have incorrect indentation level 16, expected level should be 8. 171
 Warning naming LocalVariableName Local variable name 'closing_bracket' must match pattern '^[a-z]([a-z0-9][a-zA-Z0-9]*)?$'. 171
 Warning indentation Indentation 'for' have incorrect indentation level 16, expected level should be 8. 172
 Warning blocks NeedBraces 'if' construct must use '{}'s. 173
 Warning indentation Indentation 'if' have incorrect indentation level 20, expected level should be 10. 173
 Warning indentation Indentation 'else' have incorrect indentation level 20, expected level should be 10. 175
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be 12. 176
 Warning indentation Indentation 'if' child have incorrect indentation level 28, expected level should be 14. 177
 Warning sizes LineLength Line is longer than 100 characters (found 107). 177
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 24, expected level should be 12. 178
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 12. 179
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 20, expected level should be 10. 180
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 16, expected level should be 8. 181
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 8. 182
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 10. 183
 Warning sizes LineLength Line is longer than 100 characters (found 106). 183
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 8. 184
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 6. 185
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 186
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 187

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/ExpressionProviderFactory.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.HashMap' import. Should be before 'org.springframework.data.querydsl.binding.QuerydslBindings.PathBinder'. 31
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Map' import. Should be before 'org.springframework.data.querydsl.binding.QuerydslBindings.PathBinder'. 32
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Optional' import. Should be before 'org.springframework.data.querydsl.binding.QuerydslBindings.PathBinder'. 33
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 51
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 53
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 55
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 57
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 68
 Warning sizes LineLength Line is longer than 100 characters (found 117). 71
 Warning sizes LineLength Line is longer than 100 characters (found 119). 74
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 76
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 101
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 103
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 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. 115
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 117
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 119
 Warning javadoc JavadocTagContinuationIndentation Line continuation have incorrect indentation level, expected level should be 4. 120
 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. 123
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 124
 Warning sizes LineLength Line is longer than 100 characters (found 132). 131
 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. 134
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 135

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/NumberPathExpressionProviderImpl.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Arrays' import. Should be before 'org.slf4j.LoggerFactory'. 29
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 31
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 39
 Warning sizes LineLength Line is longer than 100 characters (found 109). 39
 Warning whitespace FileTabCharacter Line contains a tab character. 39
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 2. 41
 Warning whitespace FileTabCharacter Line contains a tab character. 41
 Warning sizes LineLength Line is longer than 100 characters (found 126). 42
 Warning whitespace FileTabCharacter Line contains a tab character. 42
 Warning whitespace FileTabCharacter Line contains a tab character. 43
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 2. 44
 Warning whitespace FileTabCharacter Line contains a tab character. 44
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 46
 Warning whitespace FileTabCharacter Line contains a tab character. 46
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 47
 Warning whitespace FileTabCharacter Line contains a tab character. 47
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 48
 Warning whitespace FileTabCharacter Line contains a tab character. 48
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 50
 Warning sizes LineLength Line is longer than 100 characters (found 101). 50
 Warning whitespace FileTabCharacter Line contains a tab character. 50
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 51
 Warning whitespace FileTabCharacter Line contains a tab character. 51
 Warning whitespace FileTabCharacter Line contains a tab character. 52
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 53
 Warning whitespace FileTabCharacter Line contains a tab character. 53
 Warning whitespace FileTabCharacter Line contains a tab character. 54
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 55
 Warning whitespace FileTabCharacter Line contains a tab character. 55
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 57
 Warning sizes LineLength Line is longer than 100 characters (found 101). 57
 Warning whitespace FileTabCharacter Line contains a tab character. 57
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 58
 Warning whitespace FileTabCharacter Line contains a tab character. 58
 Warning whitespace FileTabCharacter Line contains a tab character. 59
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 60
 Warning whitespace FileTabCharacter Line contains a tab character. 60
 Warning whitespace FileTabCharacter Line contains a tab character. 61
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 62
 Warning whitespace FileTabCharacter Line contains a tab character. 62
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 64
 Warning sizes LineLength Line is longer than 100 characters (found 107). 64
 Warning whitespace FileTabCharacter Line contains a tab character. 64
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 65
 Warning sizes LineLength Line is longer than 100 characters (found 108). 65
 Warning whitespace FileTabCharacter Line contains a tab character. 65
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 66
 Warning whitespace FileTabCharacter Line contains a tab character. 66
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 68
 Warning sizes LineLength Line is longer than 100 characters (found 109). 68
 Warning whitespace FileTabCharacter Line contains a tab character. 68
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 69
 Warning sizes LineLength Line is longer than 100 characters (found 110). 69
 Warning whitespace FileTabCharacter Line contains a tab character. 69
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 70
 Warning whitespace FileTabCharacter Line contains a tab character. 70
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 72
 Warning sizes LineLength Line is longer than 100 characters (found 107). 72
 Warning whitespace FileTabCharacter Line contains a tab character. 72
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 73
 Warning sizes LineLength Line is longer than 100 characters (found 108). 73
 Warning whitespace FileTabCharacter Line contains a tab character. 73
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 74
 Warning whitespace FileTabCharacter Line contains a tab character. 74
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 76
 Warning whitespace FileTabCharacter Line contains a tab character. 76
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 77
 Warning sizes LineLength Line is longer than 100 characters (found 107). 77
 Warning whitespace FileTabCharacter Line contains a tab character. 77
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 78
 Warning whitespace FileTabCharacter Line contains a tab character. 78
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 80
 Warning whitespace FileTabCharacter Line contains a tab character. 80
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 81
 Warning whitespace FileTabCharacter Line contains a tab character. 81
 Warning whitespace FileTabCharacter Line contains a tab character. 82
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 83
 Warning sizes LineLength Line is longer than 100 characters (found 106). 83
 Warning whitespace FileTabCharacter Line contains a tab character. 83
 Warning whitespace FileTabCharacter Line contains a tab character. 84
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 85
 Warning whitespace FileTabCharacter Line contains a tab character. 85
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 87
 Warning whitespace FileTabCharacter Line contains a tab character. 87
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 88
 Warning whitespace FileTabCharacter Line contains a tab character. 88
 Warning whitespace FileTabCharacter Line contains a tab character. 89
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 90
 Warning sizes LineLength Line is longer than 100 characters (found 107). 90
 Warning whitespace FileTabCharacter Line contains a tab character. 90
 Warning whitespace FileTabCharacter Line contains a tab character. 91
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 92
 Warning whitespace FileTabCharacter Line contains a tab character. 92
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 94
 Warning whitespace FileTabCharacter Line contains a tab character. 94
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 95
 Warning whitespace FileTabCharacter Line contains a tab character. 95
 Warning whitespace FileTabCharacter Line contains a tab character. 96
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 97
 Warning sizes LineLength Line is longer than 100 characters (found 106). 97
 Warning whitespace FileTabCharacter Line contains a tab character. 97
 Warning whitespace FileTabCharacter Line contains a tab character. 98
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 99
 Warning whitespace FileTabCharacter Line contains a tab character. 99
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 101
 Warning whitespace FileTabCharacter Line contains a tab character. 101
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 102
 Warning whitespace FileTabCharacter Line contains a tab character. 102
 Warning whitespace FileTabCharacter Line contains a tab character. 103
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 104
 Warning sizes LineLength Line is longer than 100 characters (found 107). 104
 Warning whitespace FileTabCharacter Line contains a tab character. 104
 Warning whitespace FileTabCharacter Line contains a tab character. 105
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 106
 Warning whitespace FileTabCharacter Line contains a tab character. 106

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/Operator.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 48
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 57
 Warning sizes LineLength Line is longer than 100 characters (found 112). 75
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 92
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 96
 Warning sizes LineLength Line is longer than 100 characters (found 108). 101
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 106
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 4, expected level should be 2. 108
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 115
 Warning sizes LineLength Line is longer than 100 characters (found 107). 119
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 121
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 122
 Warning indentation Indentation 'for' have incorrect indentation level 12, expected level should be 6. 123
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 8. 124
 Warning indentation Indentation 'if' child have incorrect indentation level 20, expected level should be 10. 126
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 8. 127
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 12, expected level should be 6. 128
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 129
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 130
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 131

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/OperatorAndValue.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Collection' import. Should be before 'org.apache.commons.lang3.builder.ToStringBuilder'. 23
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 25
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 4, expected level should be 2. 32
 Warning javadoc JavadocParagraph <p> tag should be placed immediately before the first word, with no space after. 36
 Warning javadoc JavadocParagraph <p> tag should be preceded with an empty line. 36
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 4, expected level should be 2. 44
 Warning naming ParameterName Parameter name 'in_operators' must match pattern '^[a-z]([a-z0-9][a-zA-Z0-9]*)?$'. 44
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 8, expected level should be 4. 47
 Warning sizes LineLength Line is longer than 100 characters (found 103). 47
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 8, expected level should be 4. 49
 Warning indentation Indentation 'for' have incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'if' have incorrect indentation level 12, expected level should be 6. 51
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 52
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 53
 Warning indentation Indentation 'if' child have incorrect indentation level 16, expected level should be 8. 58
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 12, expected level should be 6. 59
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'if' have incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'if' child have incorrect indentation level 12, expected level should be 6. 63
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 8, expected level should be 4. 64
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 4, expected level should be 2. 65
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 67
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 72
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 74
 Warning sizes LineLength Line is longer than 100 characters (found 118). 75
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 77
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 79
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def' child have incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 4, expected level should be 2. 86

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/StringPathExpressionProviderImpl.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Arrays' import. Should be before 'org.slf4j.LoggerFactory'. 23
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 25
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 34
 Warning sizes LineLength Line is longer than 100 characters (found 109). 34
 Warning whitespace FileTabCharacter Line contains a tab character. 34
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 2. 36
 Warning whitespace FileTabCharacter Line contains a tab character. 36
 Warning sizes LineLength Line is longer than 100 characters (found 133). 37
 Warning whitespace FileTabCharacter Line contains a tab character. 37
 Warning sizes LineLength Line is longer than 100 characters (found 126). 38
 Warning whitespace FileTabCharacter Line contains a tab character. 38
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 2. 39
 Warning whitespace FileTabCharacter Line contains a tab character. 39
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 41
 Warning whitespace FileTabCharacter Line contains a tab character. 41
 Warning whitespace FileTabCharacter Line contains a tab character. 42
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 43
 Warning whitespace FileTabCharacter Line contains a tab character. 43
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 44
 Warning whitespace FileTabCharacter Line contains a tab character. 44
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 46
 Warning whitespace FileTabCharacter Line contains a tab character. 46
 Warning whitespace FileTabCharacter Line contains a tab character. 47
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 48
 Warning whitespace FileTabCharacter Line contains a tab character. 48
 Warning whitespace WhitespaceAround WhitespaceAround: ':' is not preceded with whitespace. 48
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 49
 Warning whitespace FileTabCharacter Line contains a tab character. 49
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 51
 Warning whitespace FileTabCharacter Line contains a tab character. 51
 Warning whitespace FileTabCharacter Line contains a tab character. 52
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 53
 Warning whitespace FileTabCharacter Line contains a tab character. 53
 Warning whitespace WhitespaceAround WhitespaceAround: ':' is not preceded with whitespace. 53
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 54
 Warning whitespace FileTabCharacter Line contains a tab character. 54
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 56
 Warning whitespace FileTabCharacter Line contains a tab character. 56
 Warning whitespace FileTabCharacter Line contains a tab character. 57
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 58
 Warning whitespace FileTabCharacter Line contains a tab character. 58
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 59
 Warning whitespace FileTabCharacter Line contains a tab character. 59
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 61
 Warning whitespace FileTabCharacter Line contains a tab character. 61
 Warning whitespace FileTabCharacter Line contains a tab character. 62
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 63
 Warning whitespace FileTabCharacter Line contains a tab character. 63
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 64
 Warning whitespace FileTabCharacter Line contains a tab character. 64
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 66
 Warning whitespace FileTabCharacter Line contains a tab character. 66
 Warning whitespace FileTabCharacter Line contains a tab character. 67
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 68
 Warning whitespace FileTabCharacter Line contains a tab character. 68
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 69
 Warning whitespace FileTabCharacter Line contains a tab character. 69
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 71
 Warning whitespace FileTabCharacter Line contains a tab character. 71
 Warning whitespace FileTabCharacter Line contains a tab character. 72
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 73
 Warning whitespace FileTabCharacter Line contains a tab character. 73
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 74
 Warning whitespace FileTabCharacter Line contains a tab character. 74
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 76
 Warning whitespace FileTabCharacter Line contains a tab character. 76
 Warning whitespace FileTabCharacter Line contains a tab character. 77
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 78
 Warning sizes LineLength Line is longer than 100 characters (found 108). 78
 Warning whitespace FileTabCharacter Line contains a tab character. 78
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 79
 Warning whitespace FileTabCharacter Line contains a tab character. 79
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 81
 Warning whitespace FileTabCharacter Line contains a tab character. 81
 Warning whitespace FileTabCharacter Line contains a tab character. 82
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 83
 Warning sizes LineLength Line is longer than 100 characters (found 109). 83
 Warning whitespace FileTabCharacter Line contains a tab character. 83
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 84
 Warning whitespace FileTabCharacter Line contains a tab character. 84
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 86
 Warning whitespace FileTabCharacter Line contains a tab character. 86
 Warning whitespace FileTabCharacter Line contains a tab character. 87
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 88
 Warning sizes LineLength Line is longer than 100 characters (found 108). 88
 Warning whitespace FileTabCharacter Line contains a tab character. 88
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 89
 Warning whitespace FileTabCharacter Line contains a tab character. 89
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 91
 Warning whitespace FileTabCharacter Line contains a tab character. 91
 Warning whitespace FileTabCharacter Line contains a tab character. 92
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 93
 Warning sizes LineLength Line is longer than 100 characters (found 109). 93
 Warning whitespace FileTabCharacter Line contains a tab character. 93
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 94
 Warning whitespace FileTabCharacter Line contains a tab character. 94

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslHttpRequestContext.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators.experimental' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'javax.servlet.http.HttpServletRequest' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 30
 Warning imports CustomImportOrder Wrong lexicographical order for 'javax.servlet.http.HttpServletRequestWrapper' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 31
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.lang.reflect.Array' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 32
 Warning imports AvoidStarImport Using the '.*' form of import should be avoided - java.util.*. 33
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.*' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 33
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.stream.Collectors' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 34
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 52
 Warning whitespace FileTabCharacter Line contains a tab character. 52
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 53
 Warning whitespace FileTabCharacter Line contains a tab character. 53
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 54
 Warning whitespace FileTabCharacter Line contains a tab character. 54
 Warning naming MemberName Member name 'original_parameters' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 54
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 55
 Warning whitespace FileTabCharacter Line contains a tab character. 55
 Warning naming MemberName Member name 'transformed_parameters' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 55
 Warning whitespace FileTabCharacter Line contains a tab character. 57
 Warning whitespace FileTabCharacter Line contains a tab character. 58
 Warning whitespace FileTabCharacter Line contains a tab character. 59
 Warning whitespace FileTabCharacter Line contains a tab character. 60
 Warning whitespace FileTabCharacter Line contains a tab character. 61
 Warning whitespace FileTabCharacter Line contains a tab character. 62
 Warning whitespace FileTabCharacter Line contains a tab character. 63
 Warning whitespace FileTabCharacter Line contains a tab character. 64
 Warning whitespace FileTabCharacter Line contains a tab character. 65
 Warning whitespace FileTabCharacter Line contains a tab character. 66
 Warning whitespace FileTabCharacter Line contains a tab character. 67
 Warning whitespace FileTabCharacter Line contains a tab character. 68
 Warning whitespace FileTabCharacter Line contains a tab character. 69
 Warning whitespace FileTabCharacter Line contains a tab character. 70
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 2. 71
 Warning whitespace FileTabCharacter Line contains a tab character. 71
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 72
 Warning whitespace FileTabCharacter Line contains a tab character. 72
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 73
 Warning whitespace FileTabCharacter Line contains a tab character. 73
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 74
 Warning whitespace FileTabCharacter Line contains a tab character. 74
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 75
 Warning whitespace FileTabCharacter Line contains a tab character. 75
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 77
 Warning whitespace FileTabCharacter Line contains a tab character. 77
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 6. 78
 Warning whitespace FileTabCharacter Line contains a tab character. 78
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 6. 79
 Warning whitespace FileTabCharacter Line contains a tab character. 79
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 6. 80
 Warning whitespace FileTabCharacter Line contains a tab character. 80
 Warning sizes LineLength Line is longer than 100 characters (found 123). 81
 Warning whitespace FileTabCharacter Line contains a tab character. 81
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 83
 Warning whitespace FileTabCharacter Line contains a tab character. 83
 Warning whitespace FileTabCharacter Line contains a tab character. 84
 Warning sizes LineLength Line is longer than 100 characters (found 105). 85
 Warning whitespace FileTabCharacter Line contains a tab character. 85
 Warning whitespace FileTabCharacter Line contains a tab character. 86
 Warning whitespace FileTabCharacter Line contains a tab character. 87
 Warning sizes LineLength Line is longer than 100 characters (found 116). 88
 Warning whitespace FileTabCharacter Line contains a tab character. 88
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 2. 89
 Warning whitespace FileTabCharacter Line contains a tab character. 89
 Warning whitespace FileTabCharacter Line contains a tab character. 91
 Warning whitespace FileTabCharacter Line contains a tab character. 92
 Warning whitespace FileTabCharacter Line contains a tab character. 93
 Warning whitespace FileTabCharacter Line contains a tab character. 94
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 95
 Warning whitespace FileTabCharacter Line contains a tab character. 95
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 4. 96
 Warning sizes LineLength Line is longer than 100 characters (found 101). 96
 Warning whitespace FileTabCharacter Line contains a tab character. 96
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 6. 97
 Warning whitespace FileTabCharacter Line contains a tab character. 97
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 4. 98
 Warning whitespace FileTabCharacter Line contains a tab character. 98
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 99
 Warning whitespace FileTabCharacter Line contains a tab character. 99
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 100
 Warning whitespace FileTabCharacter Line contains a tab character. 100
 Warning whitespace FileTabCharacter Line contains a tab character. 101
 Warning indentation Indentation 'member def type' have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 102
 Warning indentation Indentation 'method def' child have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 102
 Warning whitespace FileTabCharacter Line contains a tab character. 102
 Warning indentation Indentation 'if' have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 103
 Warning whitespace FileTabCharacter Line contains a tab character. 103
 Warning indentation Indentation 'if' child have incorrect indentation level 40, expected level should be one of the following: 22, 24, 26. 104
 Warning whitespace FileTabCharacter Line contains a tab character. 104
 Warning whitespace FileTabCharacter Line contains a tab character. 105
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 106
 Warning whitespace FileTabCharacter Line contains a tab character. 106
 Warning indentation Indentation 'method def' child have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 107
 Warning whitespace FileTabCharacter Line contains a tab character. 107
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 108
 Warning whitespace FileTabCharacter Line contains a tab character. 108
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 110
 Warning whitespace FileTabCharacter Line contains a tab character. 110
 Warning whitespace FileTabCharacter Line contains a tab character. 111
 Warning indentation Indentation 'method def' child have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 112
 Warning whitespace FileTabCharacter Line contains a tab character. 112
 Warning whitespace FileTabCharacter Line contains a tab character. 113
 Warning indentation Indentation 'lambda' have incorrect indentation level 48, expected level should be 52. 114
 Warning sizes LineLength Line is longer than 100 characters (found 124). 114
 Warning whitespace FileTabCharacter Line contains a tab character. 114
 Warning sizes LineLength Line is longer than 100 characters (found 115). 115
 Warning whitespace FileTabCharacter Line contains a tab character. 115
 Warning whitespace FileTabCharacter Line contains a tab character. 116
 Warning sizes LineLength Line is longer than 100 characters (found 101). 117
 Warning whitespace FileTabCharacter Line contains a tab character. 117
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 119
 Warning whitespace FileTabCharacter Line contains a tab character. 119
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 121
 Warning whitespace FileTabCharacter Line contains a tab character. 121
 Warning whitespace FileTabCharacter Line contains a tab character. 122
 Warning indentation Indentation 'method def' child have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 123
 Warning whitespace FileTabCharacter Line contains a tab character. 123
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 124
 Warning whitespace FileTabCharacter Line contains a tab character. 124
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 126
 Warning whitespace FileTabCharacter Line contains a tab character. 126
 Warning whitespace FileTabCharacter Line contains a tab character. 127
 Warning indentation Indentation 'member def type' have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 128
 Warning indentation Indentation 'method def' child have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 128
 Warning whitespace FileTabCharacter Line contains a tab character. 128
 Warning indentation Indentation 'method def' child have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 129
 Warning whitespace FileTabCharacter Line contains a tab character. 129
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 130
 Warning whitespace FileTabCharacter Line contains a tab character. 130
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 132
 Warning whitespace FileTabCharacter Line contains a tab character. 132
 Warning indentation Indentation 'method def' child have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 133
 Warning whitespace FileTabCharacter Line contains a tab character. 133
 Warning indentation Indentation 'member def type' have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 134
 Warning indentation Indentation 'method def' child have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 134
 Warning whitespace FileTabCharacter Line contains a tab character. 134
 Warning indentation Indentation 'method def' child have incorrect indentation level 32, expected level should be one of the following: 20, 22, 24. 135
 Warning whitespace FileTabCharacter Line contains a tab character. 135
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 24, expected level should be one of the following: 18, 20, 22. 136
 Warning whitespace FileTabCharacter Line contains a tab character. 136
 Warning whitespace FileTabCharacter Line contains a tab character. 137
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 138
 Warning whitespace FileTabCharacter Line contains a tab character. 138
 Warning whitespace FileTabCharacter Line contains a tab character. 140
 Warning whitespace FileTabCharacter Line contains a tab character. 141
 Warning whitespace FileTabCharacter Line contains a tab character. 142
 Warning whitespace FileTabCharacter Line contains a tab character. 143
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 144
 Warning whitespace FileTabCharacter Line contains a tab character. 144
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 145
 Warning whitespace FileTabCharacter Line contains a tab character. 145
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 146
 Warning whitespace FileTabCharacter Line contains a tab character. 146
 Warning whitespace FileTabCharacter Line contains a tab character. 148
 Warning whitespace FileTabCharacter Line contains a tab character. 149
 Warning whitespace FileTabCharacter Line contains a tab character. 150
 Warning whitespace FileTabCharacter Line contains a tab character. 151
 Warning whitespace FileTabCharacter Line contains a tab character. 152
 Warning whitespace FileTabCharacter Line contains a tab character. 153
 Warning whitespace FileTabCharacter Line contains a tab character. 154
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 155
 Warning whitespace FileTabCharacter Line contains a tab character. 155
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 156
 Warning whitespace FileTabCharacter Line contains a tab character. 156
 Warning sizes LineLength Line is longer than 100 characters (found 117). 157
 Warning whitespace FileTabCharacter Line contains a tab character. 157
 Warning sizes LineLength Line is longer than 100 characters (found 102). 158
 Warning whitespace FileTabCharacter Line contains a tab character. 158
 Warning whitespace FileTabCharacter Line contains a tab character. 159
 Warning whitespace FileTabCharacter Line contains a tab character. 160
 Warning whitespace FileTabCharacter Line contains a tab character. 161
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 163
 Warning whitespace FileTabCharacter Line contains a tab character. 163
 Warning whitespace FileTabCharacter Line contains a tab character. 165
 Warning whitespace FileTabCharacter Line contains a tab character. 166
 Warning whitespace FileTabCharacter Line contains a tab character. 167
 Warning whitespace FileTabCharacter Line contains a tab character. 168
 Warning whitespace FileTabCharacter Line contains a tab character. 169
 Warning whitespace FileTabCharacter Line contains a tab character. 170
 Warning whitespace FileTabCharacter Line contains a tab character. 171
 Warning whitespace FileTabCharacter Line contains a tab character. 172
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 173
 Warning whitespace FileTabCharacter Line contains a tab character. 173
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 174
 Warning whitespace FileTabCharacter Line contains a tab character. 174
 Warning sizes LineLength Line is longer than 100 characters (found 123). 175
 Warning whitespace FileTabCharacter Line contains a tab character. 175
 Warning sizes LineLength Line is longer than 100 characters (found 108). 176
 Warning whitespace FileTabCharacter Line contains a tab character. 176
 Warning whitespace FileTabCharacter Line contains a tab character. 177
 Warning whitespace FileTabCharacter Line contains a tab character. 178
 Warning whitespace FileTabCharacter Line contains a tab character. 179
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 181
 Warning whitespace FileTabCharacter Line contains a tab character. 181
 Warning whitespace FileTabCharacter Line contains a tab character. 183
 Warning whitespace FileTabCharacter Line contains a tab character. 184
 Warning whitespace FileTabCharacter Line contains a tab character. 185
 Warning whitespace FileTabCharacter Line contains a tab character. 186
 Warning whitespace FileTabCharacter Line contains a tab character. 187
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 188
 Warning whitespace FileTabCharacter Line contains a tab character. 188
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 189
 Warning sizes LineLength Line is longer than 100 characters (found 115). 189
 Warning whitespace FileTabCharacter Line contains a tab character. 189
 Warning indentation Indentation 'member def type' have incorrect indentation level 16, expected level should be 4. 190
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 190
 Warning whitespace FileTabCharacter Line contains a tab character. 190
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 191
 Warning whitespace FileTabCharacter Line contains a tab character. 191
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 6. 192
 Warning whitespace FileTabCharacter Line contains a tab character. 192
 Warning indentation Indentation '.' have incorrect indentation level 4, expected level should be 6. 193
 Warning sizes LineLength Line is longer than 100 characters (found 115). 193
 Warning whitespace FileTabCharacter Line contains a tab character. 193
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 194
 Warning sizes LineLength Line is longer than 100 characters (found 101). 194
 Warning whitespace FileTabCharacter Line contains a tab character. 194
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 195
 Warning whitespace FileTabCharacter Line contains a tab character. 195
 Warning whitespace FileTabCharacter Line contains a tab character. 197
 Warning whitespace FileTabCharacter Line contains a tab character. 198
 Warning whitespace FileTabCharacter Line contains a tab character. 199
 Warning whitespace FileTabCharacter Line contains a tab character. 200
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 201
 Warning whitespace FileTabCharacter Line contains a tab character. 201
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 4. 202
 Warning whitespace FileTabCharacter Line contains a tab character. 202
 Warning indentation Indentation 'while' have incorrect indentation level 24, expected level should be 6. 203
 Warning whitespace FileTabCharacter Line contains a tab character. 203
 Warning indentation Indentation 'if' have incorrect indentation level 32, expected level should be 8. 204
 Warning whitespace FileTabCharacter Line contains a tab character. 204
 Warning indentation Indentation '.' have incorrect indentation level 6, expected level should be 8. 205
 Warning whitespace FileTabCharacter Line contains a tab character. 205
 Warning indentation Indentation 'if' child have incorrect indentation level 40, expected level should be 10. 206
 Warning whitespace FileTabCharacter Line contains a tab character. 206
 Warning sizes LineLength Line is longer than 100 characters (found 136). 207
 Warning whitespace FileTabCharacter Line contains a tab character. 207
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 32, expected level should be 8. 208
 Warning whitespace FileTabCharacter Line contains a tab character. 208
 Warning indentation Indentation 'else' child have incorrect indentation level 40, expected level should be 10. 209
 Warning whitespace FileTabCharacter Line contains a tab character. 209
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 32, expected level should be 8. 210
 Warning whitespace FileTabCharacter Line contains a tab character. 210
 Warning indentation Indentation 'while rcurly' have incorrect indentation level 24, expected level should be 6. 211
 Warning whitespace FileTabCharacter Line contains a tab character. 211
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 4. 212
 Warning whitespace FileTabCharacter Line contains a tab character. 212
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 213
 Warning whitespace FileTabCharacter Line contains a tab character. 213
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 214
 Warning whitespace FileTabCharacter Line contains a tab character. 214

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslHttpRequestContextAwareServletFilter.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators.experimental' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports AvoidStarImport Using the '.*' form of import should be avoided - javax.servlet.*. 30
 Warning imports CustomImportOrder Wrong lexicographical order for 'javax.servlet.*' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 30
 Warning imports CustomImportOrder Wrong lexicographical order for 'javax.servlet.http.HttpServletRequest' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 31
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.io.IOException' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 32
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Comparator' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 33
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Map' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 34
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Optional' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 35
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.TreeMap' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 36
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.concurrent.ExecutionException' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 37
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 67
 Warning sizes LineLength Line is longer than 100 characters (found 121). 67
 Warning whitespace FileTabCharacter Line contains a tab character. 67
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 69
 Warning sizes LineLength Line is longer than 100 characters (found 103). 69
 Warning whitespace FileTabCharacter Line contains a tab character. 69
 Warning indentation Indentation 'member def type' have incorrect indentation level 8, expected level should be 2. 71
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 71
 Warning sizes LineLength Line is longer than 100 characters (found 104). 71
 Warning whitespace FileTabCharacter Line contains a tab character. 71
 Warning naming MemberName Member name 'URI_SEARCH_RESOURCE_TYPE_MAPPINGS' must match pattern '^[a-z][a-z0-9][a-zA-Z0-9]*$'. 71
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 72
 Warning whitespace FileTabCharacter Line contains a tab character. 72
 Warning whitespace FileTabCharacter Line contains a tab character. 73
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 74
 Warning whitespace FileTabCharacter Line contains a tab character. 74
 Warning indentation Indentation 'if' child have incorrect indentation level 32, expected level should be one of the following: 14, 16, 18. 75
 Warning whitespace FileTabCharacter Line contains a tab character. 75
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 76
 Warning whitespace FileTabCharacter Line contains a tab character. 76
 Warning indentation Indentation 'if' child have incorrect indentation level 32, expected level should be one of the following: 14, 16, 18. 77
 Warning whitespace FileTabCharacter Line contains a tab character. 77
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 78
 Warning whitespace FileTabCharacter Line contains a tab character. 78
 Warning whitespace FileTabCharacter Line contains a tab character. 79
 Warning whitespace FileTabCharacter Line contains a tab character. 80
 Warning whitespace FileTabCharacter Line contains a tab character. 81
 Warning indentation Indentation 'else' child have incorrect indentation level 32, expected level should be one of the following: 14, 16, 18. 82
 Warning whitespace FileTabCharacter Line contains a tab character. 82
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 83
 Warning whitespace FileTabCharacter Line contains a tab character. 83
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 84
 Warning whitespace FileTabCharacter Line contains a tab character. 84
 Warning whitespace FileTabCharacter Line contains a tab character. 85
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 87
 Warning whitespace FileTabCharacter Line contains a tab character. 87
 Warning indentation Indentation '.' have incorrect indentation level 3, expected level should be 5. 88
 Warning whitespace FileTabCharacter Line contains a tab character. 88
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 32, expected level should be one of the following: 26, 28, 30. 89
 Warning whitespace FileTabCharacter Line contains a tab character. 89
 Warning whitespace FileTabCharacter Line contains a tab character. 90
 Warning indentation Indentation 'method def' child have incorrect indentation level 40, expected level should be one of the following: 28, 30, 32. 91
 Warning whitespace FileTabCharacter Line contains a tab character. 91
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 32, expected level should be one of the following: 26, 28, 30. 92
 Warning whitespace FileTabCharacter Line contains a tab character. 92
 Warning whitespace FileTabCharacter Line contains a tab character. 93
 Warning whitespace FileTabCharacter Line contains a tab character. 95
 Warning whitespace FileTabCharacter Line contains a tab character. 96
 Warning whitespace FileTabCharacter Line contains a tab character. 97
 Warning whitespace FileTabCharacter Line contains a tab character. 98
 Warning whitespace FileTabCharacter Line contains a tab character. 99
 Warning whitespace FileTabCharacter Line contains a tab character. 100
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 2. 101
 Warning naming AbbreviationAsWordInName Abbreviation in name must contain no more than '1' capital letters. 101
 Warning sizes LineLength Line is longer than 100 characters (found 118). 101
 Warning whitespace FileTabCharacter Line contains a tab character. 101
 Warning naming ParameterName Parameter name 'URI_SEARCH_RESOURCE_TYPE_MAPPINGS' must match pattern '^[a-z]([a-z0-9][a-zA-Z0-9]*)?$'. 101
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 4. 102
 Warning whitespace FileTabCharacter Line contains a tab character. 102
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 6. 103
 Warning sizes LineLength Line is longer than 100 characters (found 105). 103
 Warning whitespace FileTabCharacter Line contains a tab character. 103
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 4. 104
 Warning whitespace FileTabCharacter Line contains a tab character. 104
 Warning indentation Indentation 'try' have incorrect indentation level 16, expected level should be 4. 106
 Warning whitespace FileTabCharacter Line contains a tab character. 106
 Warning indentation Indentation 'try' child have incorrect indentation level 24, expected level should be 6. 107
 Warning whitespace FileTabCharacter Line contains a tab character. 107
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 16, expected level should be 4. 108
 Warning whitespace FileTabCharacter Line contains a tab character. 108
 Warning indentation Indentation 'catch' child have incorrect indentation level 24, expected level should be 6. 109
 Warning sizes LineLength Line is longer than 100 characters (found 126). 109
 Warning whitespace FileTabCharacter Line contains a tab character. 109
 Warning sizes LineLength Line is longer than 100 characters (found 221). 110
 Warning whitespace FileTabCharacter Line contains a tab character. 110
 Warning sizes LineLength Line is longer than 100 characters (found 223). 111
 Warning whitespace FileTabCharacter Line contains a tab character. 111
 Warning sizes LineLength Line is longer than 100 characters (found 226). 112
 Warning whitespace FileTabCharacter Line contains a tab character. 112
 Warning sizes LineLength Line is longer than 100 characters (found 227). 113
 Warning whitespace FileTabCharacter Line contains a tab character. 113
 Warning sizes LineLength Line is longer than 100 characters (found 230). 114
 Warning whitespace FileTabCharacter Line contains a tab character. 114
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 16, expected level should be 4. 115
 Warning whitespace FileTabCharacter Line contains a tab character. 115
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 2. 116
 Warning whitespace FileTabCharacter Line contains a tab character. 116
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 118
 Warning whitespace FileTabCharacter Line contains a tab character. 118
 Warning whitespace FileTabCharacter Line contains a tab character. 119
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 121
 Warning whitespace FileTabCharacter Line contains a tab character. 121
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 123
 Warning whitespace FileTabCharacter Line contains a tab character. 123
 Warning whitespace FileTabCharacter Line contains a tab character. 124
 Warning whitespace FileTabCharacter Line contains a tab character. 125
 Warning indentation Indentation 'try' have incorrect indentation level 16, expected level should be 4. 127
 Warning whitespace FileTabCharacter Line contains a tab character. 127
 Warning indentation Indentation 'member def type' have incorrect indentation level 24, expected level should be 6. 128
 Warning indentation Indentation 'try' child have incorrect indentation level 24, expected level should be 6. 128
 Warning whitespace FileTabCharacter Line contains a tab character. 128
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 24, expected level should be 6. 129
 Warning indentation Indentation 'try' child have incorrect indentation level 24, expected level should be 6. 129
 Warning whitespace FileTabCharacter Line contains a tab character. 129
 Warning indentation Indentation 'member def type' have incorrect indentation level 24, expected level should be 6. 131
 Warning indentation Indentation 'try' child have incorrect indentation level 24, expected level should be 6. 131
 Warning sizes LineLength Line is longer than 100 characters (found 105). 131
 Warning whitespace FileTabCharacter Line contains a tab character. 131
 Warning indentation Indentation '.' have incorrect indentation level 5, expected level should be 7. 132
 Warning whitespace FileTabCharacter Line contains a tab character. 132
 Warning indentation Indentation '.' have incorrect indentation level 5, expected level should be 7. 133
 Warning whitespace FileTabCharacter Line contains a tab character. 133
 Warning indentation Indentation '.' have incorrect indentation level 5, expected level should be 7. 134
 Warning whitespace FileTabCharacter Line contains a tab character. 134
 Warning indentation Indentation '.' have incorrect indentation level 5, expected level should be 7. 135
 Warning whitespace FileTabCharacter Line contains a tab character. 135
 Warning indentation Indentation '.' have incorrect indentation level 5, expected level should be 7. 136
 Warning whitespace FileTabCharacter Line contains a tab character. 136
 Warning indentation Indentation 'try' have incorrect indentation level 48, expected level should be 42. 137
 Warning whitespace FileTabCharacter Line contains a tab character. 137
 Warning indentation Indentation 'try' child have incorrect indentation level 56, expected level should be 44. 138
 Warning whitespace FileTabCharacter Line contains a tab character. 138
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 48, expected level should be 42. 139
 Warning whitespace FileTabCharacter Line contains a tab character. 139
 Warning indentation Indentation 'catch' child have incorrect indentation level 56, expected level should be 44. 140
 Warning sizes LineLength Line is longer than 100 characters (found 143). 140
 Warning whitespace FileTabCharacter Line contains a tab character. 140
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 48, expected level should be 42. 141
 Warning whitespace FileTabCharacter Line contains a tab character. 141
 Warning whitespace FileTabCharacter Line contains a tab character. 142
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be 6. 144
 Warning whitespace FileTabCharacter Line contains a tab character. 144
 Warning indentation Indentation 'if' child have incorrect indentation level 32, expected level should be 8. 145
 Warning whitespace FileTabCharacter Line contains a tab character. 145
 Warning indentation Indentation 'new' have incorrect indentation level 6, expected level should be 8. 146
 Warning sizes LineLength Line is longer than 100 characters (found 128). 146
 Warning whitespace FileTabCharacter Line contains a tab character. 146
 Warning whitespace FileTabCharacter Line contains a tab character. 147
 Warning whitespace FileTabCharacter Line contains a tab character. 148
 Warning indentation Indentation 'if' child have incorrect indentation level 32, expected level should be 8. 149
 Warning indentation Indentation 'member def type' have incorrect indentation level 32, expected level should be 8. 149
 Warning sizes LineLength Line is longer than 100 characters (found 125). 149
 Warning whitespace FileTabCharacter Line contains a tab character. 149
 Warning indentation Indentation 'if' child have incorrect indentation level 32, expected level should be 8. 150
 Warning whitespace FileTabCharacter Line contains a tab character. 150
 Warning indentation Indentation 'if' child have incorrect indentation level 32, expected level should be 8. 151
 Warning whitespace FileTabCharacter Line contains a tab character. 151
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 24, expected level should be 6. 152
 Warning whitespace FileTabCharacter Line contains a tab character. 152
 Warning indentation Indentation 'else' child have incorrect indentation level 32, expected level should be 8. 153
 Warning whitespace FileTabCharacter Line contains a tab character. 153
 Warning indentation Indentation '"No EntityPath found on request_uri: {}, bad filter configurations (check filter url pattern and also the injected mappings), filter is turning into a no-op for this request"' have incorrect indentation level 6, expected level should be 8. 154
 Warning sizes LineLength Line is longer than 100 characters (found 223). 154
 Warning whitespace FileTabCharacter Line contains a tab character. 154
 Warning indentation Indentation 'request_uri' have incorrect indentation level 6, expected level should be 8. 155
 Warning whitespace FileTabCharacter Line contains a tab character. 155
 Warning indentation Indentation 'else' child have incorrect indentation level 32, expected level should be 8. 156
 Warning whitespace FileTabCharacter Line contains a tab character. 156
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 24, expected level should be 6. 157
 Warning whitespace FileTabCharacter Line contains a tab character. 157
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 16, expected level should be 4. 158
 Warning whitespace FileTabCharacter Line contains a tab character. 158
 Warning indentation Indentation 'finally' child have incorrect indentation level 24, expected level should be 6. 159
 Warning whitespace FileTabCharacter Line contains a tab character. 159
 Warning indentation Indentation 'finally rcurly' have incorrect indentation level 16, expected level should be 4. 160
 Warning whitespace FileTabCharacter Line contains a tab character. 160
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 161
 Warning whitespace FileTabCharacter Line contains a tab character. 161
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 163
 Warning whitespace FileTabCharacter Line contains a tab character. 163
 Warning whitespace FileTabCharacter Line contains a tab character. 164
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 166
 Warning whitespace FileTabCharacter Line contains a tab character. 166

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslHttpRequestContextHolder.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators.experimental' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.lang.reflect.Constructor' import. Should be before 'org.springframework.util.StringUtils'. 21
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 31
 Warning whitespace FileTabCharacter Line contains a tab character. 44
 Warning whitespace FileTabCharacter Line contains a tab character. 45
 Warning whitespace FileTabCharacter Line contains a tab character. 46
 Warning whitespace FileTabCharacter Line contains a tab character. 47
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 48
 Warning whitespace FileTabCharacter Line contains a tab character. 48
 Warning whitespace FileTabCharacter Line contains a tab character. 49
 Warning whitespace FileTabCharacter Line contains a tab character. 50
 Warning whitespace FileTabCharacter Line contains a tab character. 51
 Warning whitespace FileTabCharacter Line contains a tab character. 52
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 53
 Warning whitespace FileTabCharacter Line contains a tab character. 53
 Warning whitespace FileTabCharacter Line contains a tab character. 54
 Warning whitespace FileTabCharacter Line contains a tab character. 55
 Warning whitespace FileTabCharacter Line contains a tab character. 56
 Warning whitespace FileTabCharacter Line contains a tab character. 57
 Warning whitespace FileTabCharacter Line contains a tab character. 58
 Warning whitespace FileTabCharacter Line contains a tab character. 59
 Warning whitespace FileTabCharacter Line contains a tab character. 60
 Warning whitespace FileTabCharacter Line contains a tab character. 61
 Warning whitespace FileTabCharacter Line contains a tab character. 62
 Warning whitespace FileTabCharacter Line contains a tab character. 63
 Warning whitespace FileTabCharacter Line contains a tab character. 64
 Warning whitespace FileTabCharacter Line contains a tab character. 65
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 66
 Warning sizes LineLength Line is longer than 100 characters (found 107). 66
 Warning whitespace FileTabCharacter Line contains a tab character. 66
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 67
 Warning whitespace FileTabCharacter Line contains a tab character. 67
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 68
 Warning whitespace FileTabCharacter Line contains a tab character. 68
 Warning indentation Indentation 'static initialization' have incorrect indentation level 8, expected level should be 2. 70
 Warning whitespace FileTabCharacter Line contains a tab character. 70
 Warning indentation Indentation 'static initialization' child have incorrect indentation level 16, expected level should be 4. 71
 Warning whitespace FileTabCharacter Line contains a tab character. 71
 Warning indentation Indentation 'static initialization rcurly' have incorrect indentation level 8, expected level should be 2. 72
 Warning whitespace FileTabCharacter Line contains a tab character. 72
 Warning whitespace FileTabCharacter Line contains a tab character. 74
 Warning sizes LineLength Line is longer than 100 characters (found 115). 75
 Warning whitespace FileTabCharacter Line contains a tab character. 75
 Warning whitespace FileTabCharacter Line contains a tab character. 77
 Warning whitespace FileTabCharacter Line contains a tab character. 78
 Warning whitespace FileTabCharacter Line contains a tab character. 79
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 80
 Warning whitespace FileTabCharacter Line contains a tab character. 80
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 81
 Warning whitespace FileTabCharacter Line contains a tab character. 81
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 82
 Warning whitespace FileTabCharacter Line contains a tab character. 82
 Warning whitespace FileTabCharacter Line contains a tab character. 84
 Warning whitespace FileTabCharacter Line contains a tab character. 85
 Warning whitespace FileTabCharacter Line contains a tab character. 86
 Warning whitespace FileTabCharacter Line contains a tab character. 87
 Warning whitespace FileTabCharacter Line contains a tab character. 88
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 89
 Warning whitespace FileTabCharacter Line contains a tab character. 89
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 90
 Warning whitespace FileTabCharacter Line contains a tab character. 90
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 91
 Warning whitespace FileTabCharacter Line contains a tab character. 91
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 93
 Warning whitespace FileTabCharacter Line contains a tab character. 93
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 4. 94
 Warning whitespace FileTabCharacter Line contains a tab character. 94
 Warning whitespace FileTabCharacter Line contains a tab character. 95
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 6. 96
 Warning whitespace FileTabCharacter Line contains a tab character. 96
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 4. 97
 Warning whitespace FileTabCharacter Line contains a tab character. 97
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 4. 99
 Warning whitespace FileTabCharacter Line contains a tab character. 99
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 6. 100
 Warning whitespace FileTabCharacter Line contains a tab character. 100
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 4. 101
 Warning whitespace FileTabCharacter Line contains a tab character. 101
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 6. 102
 Warning whitespace FileTabCharacter Line contains a tab character. 102
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 4. 103
 Warning whitespace FileTabCharacter Line contains a tab character. 103
 Warning whitespace FileTabCharacter Line contains a tab character. 104
 Warning indentation Indentation 'try' have incorrect indentation level 24, expected level should be 6. 105
 Warning whitespace FileTabCharacter Line contains a tab character. 105
 Warning indentation Indentation 'member def type' have incorrect indentation level 32, expected level should be 8. 106
 Warning indentation Indentation 'try' child have incorrect indentation level 32, expected level should be 8. 106
 Warning whitespace FileTabCharacter Line contains a tab character. 106
 Warning indentation Indentation 'member def type' have incorrect indentation level 32, expected level should be 8. 107
 Warning indentation Indentation 'try' child have incorrect indentation level 32, expected level should be 8. 107
 Warning whitespace FileTabCharacter Line contains a tab character. 107
 Warning indentation Indentation 'try' child have incorrect indentation level 32, expected level should be 8. 108
 Warning sizes LineLength Line is longer than 100 characters (found 115). 108
 Warning whitespace FileTabCharacter Line contains a tab character. 108
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 24, expected level should be 6. 109
 Warning whitespace FileTabCharacter Line contains a tab character. 109
 Warning indentation Indentation 'catch' child have incorrect indentation level 32, expected level should be 8. 110
 Warning whitespace FileTabCharacter Line contains a tab character. 110
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 24, expected level should be 6. 111
 Warning whitespace FileTabCharacter Line contains a tab character. 111
 Warning indentation Indentation 'else rcurly' have incorrect indentation level 16, expected level should be 4. 112
 Warning whitespace FileTabCharacter Line contains a tab character. 112
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 113
 Warning whitespace FileTabCharacter Line contains a tab character. 113
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 115
 Warning whitespace FileTabCharacter Line contains a tab character. 115
 Warning whitespace FileTabCharacter Line contains a tab character. 116
 Warning whitespace FileTabCharacter Line contains a tab character. 117
 Warning whitespace FileTabCharacter Line contains a tab character. 118
 Warning whitespace FileTabCharacter Line contains a tab character. 119
 Warning whitespace FileTabCharacter Line contains a tab character. 120
 Warning whitespace FileTabCharacter Line contains a tab character. 121
 Warning whitespace FileTabCharacter Line contains a tab character. 122
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 123
 Warning whitespace FileTabCharacter Line contains a tab character. 123
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 124
 Warning whitespace FileTabCharacter Line contains a tab character. 124
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 125
 Warning whitespace FileTabCharacter Line contains a tab character. 125
 Warning whitespace FileTabCharacter Line contains a tab character. 127
 Warning whitespace FileTabCharacter Line contains a tab character. 128
 Warning whitespace FileTabCharacter Line contains a tab character. 129
 Warning whitespace FileTabCharacter Line contains a tab character. 130
 Warning whitespace FileTabCharacter Line contains a tab character. 131
 Warning whitespace FileTabCharacter Line contains a tab character. 132
 Warning whitespace FileTabCharacter Line contains a tab character. 133
 Warning whitespace FileTabCharacter Line contains a tab character. 134
 Warning whitespace FileTabCharacter Line contains a tab character. 135
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 136
 Warning whitespace FileTabCharacter Line contains a tab character. 136
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 137
 Warning whitespace FileTabCharacter Line contains a tab character. 137
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 138
 Warning whitespace FileTabCharacter Line contains a tab character. 138
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 139
 Warning whitespace FileTabCharacter Line contains a tab character. 139
 Warning whitespace FileTabCharacter Line contains a tab character. 141
 Warning whitespace FileTabCharacter Line contains a tab character. 142
 Warning whitespace FileTabCharacter Line contains a tab character. 143
 Warning whitespace FileTabCharacter Line contains a tab character. 144
 Warning whitespace FileTabCharacter Line contains a tab character. 145
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 146
 Warning whitespace FileTabCharacter Line contains a tab character. 146
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 147
 Warning whitespace FileTabCharacter Line contains a tab character. 147
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 148
 Warning whitespace FileTabCharacter Line contains a tab character. 148

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslHttpRequestContextHolderStrategy.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators.experimental' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning whitespace FileTabCharacter Line contains a tab character. 31
 Warning whitespace FileTabCharacter Line contains a tab character. 32
 Warning whitespace FileTabCharacter Line contains a tab character. 33
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 34
 Warning whitespace FileTabCharacter Line contains a tab character. 34
 Warning whitespace FileTabCharacter Line contains a tab character. 36
 Warning whitespace FileTabCharacter Line contains a tab character. 37
 Warning whitespace FileTabCharacter Line contains a tab character. 38
 Warning whitespace FileTabCharacter Line contains a tab character. 39
 Warning whitespace FileTabCharacter Line contains a tab character. 40
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 41
 Warning whitespace FileTabCharacter Line contains a tab character. 41
 Warning whitespace FileTabCharacter Line contains a tab character. 43
 Warning whitespace FileTabCharacter Line contains a tab character. 44
 Warning whitespace FileTabCharacter Line contains a tab character. 45
 Warning whitespace FileTabCharacter Line contains a tab character. 46
 Warning whitespace FileTabCharacter Line contains a tab character. 47
 Warning whitespace FileTabCharacter Line contains a tab character. 48
 Warning whitespace FileTabCharacter Line contains a tab character. 49
 Warning whitespace FileTabCharacter Line contains a tab character. 50
 Warning whitespace FileTabCharacter Line contains a tab character. 51
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 52
 Warning whitespace FileTabCharacter Line contains a tab character. 52

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/QuerydslPredicateArgumentResolverBeanPostProcessor.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators.experimental' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.sql.Timestamp' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 29
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.time.LocalDate' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 30
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Date' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 31
 Warning imports CustomImportOrder Wrong lexicographical order for 'java.util.Optional' import. Should be before 'org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolver'. 32
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 60
 Warning whitespace FileTabCharacter Line contains a tab character. 60
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 62
 Warning whitespace FileTabCharacter Line contains a tab character. 62
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 64
 Warning whitespace FileTabCharacter Line contains a tab character. 64
 Warning whitespace FileTabCharacter Line contains a tab character. 66
 Warning whitespace FileTabCharacter Line contains a tab character. 67
 Warning whitespace FileTabCharacter Line contains a tab character. 68
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 69
 Warning whitespace FileTabCharacter Line contains a tab character. 69
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 71
 Warning whitespace FileTabCharacter Line contains a tab character. 71
 Warning whitespace FileTabCharacter Line contains a tab character. 72
 Warning blocks NeedBraces 'if' construct must use '{}'s. 73
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 73
 Warning whitespace FileTabCharacter Line contains a tab character. 73
 Warning whitespace ParenPad '(' is followed by whitespace. 73
 Warning whitespace FileTabCharacter Line contains a tab character. 74
 Warning indentation Indentation 'method def' child have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 76
 Warning whitespace FileTabCharacter Line contains a tab character. 76
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 77
 Warning whitespace FileTabCharacter Line contains a tab character. 77
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 79
 Warning whitespace FileTabCharacter Line contains a tab character. 79
 Warning whitespace FileTabCharacter Line contains a tab character. 80
 Warning blocks NeedBraces 'if' construct must use '{}'s. 81
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 81
 Warning sizes LineLength Line is longer than 100 characters (found 120). 81
 Warning whitespace FileTabCharacter Line contains a tab character. 81
 Warning whitespace ParenPad '(' is followed by whitespace. 81
 Warning whitespace FileTabCharacter Line contains a tab character. 82
 Warning indentation Indentation 'method def' child have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 84
 Warning whitespace FileTabCharacter Line contains a tab character. 84
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 85
 Warning whitespace FileTabCharacter Line contains a tab character. 85
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 87
 Warning whitespace FileTabCharacter Line contains a tab character. 87
 Warning whitespace FileTabCharacter Line contains a tab character. 88
 Warning blocks NeedBraces 'if' construct must use '{}'s. 90
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 90
 Warning sizes LineLength Line is longer than 100 characters (found 107). 90
 Warning whitespace FileTabCharacter Line contains a tab character. 90
 Warning whitespace ParenPad '(' is followed by whitespace. 90
 Warning whitespace FileTabCharacter Line contains a tab character. 91
 Warning indentation Indentation 'method def' child have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 93
 Warning whitespace FileTabCharacter Line contains a tab character. 93
 Warning sizes LineLength Line is longer than 100 characters (found 112). 94
 Warning whitespace FileTabCharacter Line contains a tab character. 94
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 95
 Warning whitespace FileTabCharacter Line contains a tab character. 95
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 97
 Warning whitespace FileTabCharacter Line contains a tab character. 97
 Warning sizes LineLength Line is longer than 100 characters (found 108). 98
 Warning whitespace FileTabCharacter Line contains a tab character. 98
 Warning blocks NeedBraces 'if' construct must use '{}'s. 100
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 100
 Warning sizes LineLength Line is longer than 100 characters (found 120). 100
 Warning whitespace FileTabCharacter Line contains a tab character. 100
 Warning whitespace ParenPad '(' is followed by whitespace. 100
 Warning sizes LineLength Line is longer than 100 characters (found 105). 101
 Warning whitespace FileTabCharacter Line contains a tab character. 101
 Warning indentation Indentation 'method def' child have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 103
 Warning whitespace FileTabCharacter Line contains a tab character. 103
 Warning sizes LineLength Line is longer than 100 characters (found 112). 104
 Warning whitespace FileTabCharacter Line contains a tab character. 104
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 105
 Warning whitespace FileTabCharacter Line contains a tab character. 105
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 107
 Warning whitespace FileTabCharacter Line contains a tab character. 107
 Warning indentation Indentation 'member def type' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 108
 Warning indentation Indentation 'method def' child have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 108
 Warning whitespace FileTabCharacter Line contains a tab character. 108
 Warning indentation Indentation 'if' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 110
 Warning sizes LineLength Line is longer than 100 characters (found 114). 110
 Warning whitespace FileTabCharacter Line contains a tab character. 110
 Warning whitespace ParenPad '(' is followed by whitespace. 110
 Warning whitespace ParenPad ')' is preceded with whitespace. 110
 Warning indentation Indentation 'for' have incorrect indentation level 32, expected level should be one of the following: 14, 16, 18. 111
 Warning whitespace FileTabCharacter Line contains a tab character. 111
 Warning indentation Indentation 'if' have incorrect indentation level 40, expected level should be one of the following: 16, 18, 20. 112
 Warning whitespace FileTabCharacter Line contains a tab character. 112
 Warning indentation Indentation 'if' child have incorrect indentation level 48, expected level should be one of the following: 18, 20, 22. 113
 Warning whitespace FileTabCharacter Line contains a tab character. 113
 Warning indentation Indentation 'if' child have incorrect indentation level 48, expected level should be one of the following: 18, 20, 22. 114
 Warning whitespace FileTabCharacter Line contains a tab character. 114
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 40, expected level should be one of the following: 16, 18, 20. 115
 Warning whitespace FileTabCharacter Line contains a tab character. 115
 Warning indentation Indentation 'for rcurly' have incorrect indentation level 32, expected level should be one of the following: 14, 16, 18. 116
 Warning whitespace FileTabCharacter Line contains a tab character. 116
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 117
 Warning whitespace FileTabCharacter Line contains a tab character. 117
 Warning indentation Indentation 'method def' child have incorrect indentation level 24, expected level should be one of the following: 12, 14, 16. 118
 Warning whitespace FileTabCharacter Line contains a tab character. 118
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 16, expected level should be one of the following: 10, 12, 14. 119
 Warning whitespace FileTabCharacter Line contains a tab character. 119
 Warning whitespace FileTabCharacter Line contains a tab character. 120
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 122
 Warning whitespace FileTabCharacter Line contains a tab character. 122
 Warning sizes LineLength Line is longer than 100 characters (found 106). 123
 Warning whitespace FileTabCharacter Line contains a tab character. 123
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 124
 Warning whitespace FileTabCharacter Line contains a tab character. 124
 Warning whitespace FileTabCharacter Line contains a tab character. 125
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 2. 126
 Warning sizes LineLength Line is longer than 100 characters (found 116). 126
 Warning whitespace FileTabCharacter Line contains a tab character. 126
 Warning whitespace FileTabCharacter Line contains a tab character. 127
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 2. 128
 Warning whitespace FileTabCharacter Line contains a tab character. 128
 Warning javadoc SummaryJavadoc First sentence of Javadoc is incomplete (period is missing) or not present. 131
 Warning whitespace FileTabCharacter Line contains a tab character. 131
 Warning sizes LineLength Line is longer than 100 characters (found 144). 132
 Warning whitespace FileTabCharacter Line contains a tab character. 132
 Warning sizes LineLength Line is longer than 100 characters (found 112). 133
 Warning whitespace FileTabCharacter Line contains a tab character. 133
 Warning whitespace FileTabCharacter Line contains a tab character. 134
 Warning whitespace FileTabCharacter Line contains a tab character. 135
 Warning javadoc NonEmptyAtclauseDescription At-clause should have a non-empty description. 136
 Warning whitespace FileTabCharacter Line contains a tab character. 136
 Warning whitespace FileTabCharacter Line contains a tab character. 137
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 2. 138
 Warning sizes LineLength Line is longer than 100 characters (found 161). 138
 Warning whitespace FileTabCharacter Line contains a tab character. 138
 Warning sizes LineLength Line is longer than 100 characters (found 132). 139
 Warning whitespace FileTabCharacter Line contains a tab character. 139
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 2. 140
 Warning whitespace FileTabCharacter Line contains a tab character. 140
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 2. 142
 Warning sizes LineLength Line is longer than 100 characters (found 191). 142
 Warning whitespace FileTabCharacter Line contains a tab character. 142
 Warning javadoc JavadocMethod Missing a Javadoc comment. 142
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 143
 Warning sizes LineLength Line is longer than 100 characters (found 102). 143
 Warning whitespace FileTabCharacter Line contains a tab character. 143
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 144
 Warning whitespace FileTabCharacter Line contains a tab character. 144
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 145
 Warning whitespace FileTabCharacter Line contains a tab character. 145
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 146
 Warning whitespace FileTabCharacter Line contains a tab character. 146
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 2. 147
 Warning whitespace FileTabCharacter Line contains a tab character. 147
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 149
 Warning whitespace FileTabCharacter Line contains a tab character. 149
 Warning sizes LineLength Line is longer than 100 characters (found 106). 150
 Warning whitespace FileTabCharacter Line contains a tab character. 150
 Warning indentation Indentation 'member def type' have incorrect indentation level 16, expected level should be 4. 151
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 151
 Warning whitespace FileTabCharacter Line contains a tab character. 151
 Warning indentation Indentation 'if' have incorrect indentation level 16, expected level should be 4. 152
 Warning sizes LineLength Line is longer than 100 characters (found 116). 152
 Warning whitespace FileTabCharacter Line contains a tab character. 152
 Warning indentation Indentation 'if' child have incorrect indentation level 24, expected level should be 6. 153
 Warning whitespace FileTabCharacter Line contains a tab character. 153
 Warning indentation Indentation 'try' have incorrect indentation level 24, expected level should be 6. 154
 Warning whitespace FileTabCharacter Line contains a tab character. 154
 Warning indentation Indentation 'try' have incorrect indentation level 32, expected level should be 8. 155
 Warning whitespace FileTabCharacter Line contains a tab character. 155
 Warning whitespace FileTabCharacter Line contains a tab character. 156
 Warning indentation Indentation 'try' child have incorrect indentation level 40, expected level should be 10. 157
 Warning sizes LineLength Line is longer than 100 characters (found 122). 157
 Warning whitespace FileTabCharacter Line contains a tab character. 157
 Warning sizes LineLength Line is longer than 100 characters (found 145). 158
 Warning whitespace FileTabCharacter Line contains a tab character. 158
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 32, expected level should be 8. 159
 Warning whitespace FileTabCharacter Line contains a tab character. 159
 Warning whitespace FileTabCharacter Line contains a tab character. 160
 Warning indentation Indentation 'catch' child have incorrect indentation level 40, expected level should be 10. 161
 Warning sizes LineLength Line is longer than 100 characters (found 122). 161
 Warning whitespace FileTabCharacter Line contains a tab character. 161
 Warning sizes LineLength Line is longer than 100 characters (found 132). 162
 Warning whitespace FileTabCharacter Line contains a tab character. 162
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 32, expected level should be 8. 163
 Warning whitespace FileTabCharacter Line contains a tab character. 163
 Warning indentation Indentation 'try rcurly' have incorrect indentation level 24, expected level should be 6. 164
 Warning whitespace FileTabCharacter Line contains a tab character. 164
 Warning whitespace FileTabCharacter Line contains a tab character. 165
 Warning indentation Indentation 'catch' child have incorrect indentation level 32, expected level should be 8. 166
 Warning sizes LineLength Line is longer than 100 characters (found 122). 166
 Warning whitespace FileTabCharacter Line contains a tab character. 166
 Warning indentation Indentation 'catch rcurly' have incorrect indentation level 24, expected level should be 6. 167
 Warning whitespace FileTabCharacter Line contains a tab character. 167
 Warning indentation Indentation 'if rcurly' have incorrect indentation level 16, expected level should be 4. 168
 Warning whitespace FileTabCharacter Line contains a tab character. 168
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 169
 Warning whitespace FileTabCharacter Line contains a tab character. 169
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 170
 Warning whitespace FileTabCharacter Line contains a tab character. 170
 Warning whitespace FileTabCharacter Line contains a tab character. 172
 Warning whitespace FileTabCharacter Line contains a tab character. 173
 Warning whitespace FileTabCharacter Line contains a tab character. 174
 Warning whitespace FileTabCharacter Line contains a tab character. 175
 Warning whitespace FileTabCharacter Line contains a tab character. 176
 Warning whitespace FileTabCharacter Line contains a tab character. 177
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 178
 Warning whitespace FileTabCharacter Line contains a tab character. 178
 Warning sizes LineLength Line is longer than 100 characters (found 107). 179
 Warning whitespace FileTabCharacter Line contains a tab character. 179
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 180
 Warning whitespace FileTabCharacter Line contains a tab character. 180
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 181
 Warning whitespace FileTabCharacter Line contains a tab character. 181

org/bitbucket/gt_tech/spring/data/querydsl/value/operators/experimental/ThreadLocalQuerydslHttpRequestContextHolderStrategy.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 3
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 7
 Warning javadoc JavadocParagraph Empty line should be followed by <p> tag on the next line. 9
 Warning whitespace EmptyLineSeparator 'package' should be separated from previous statement. 16
 Warning naming PackageName Package name 'org.bitbucket.gt_tech.spring.data.querydsl.value.operators.experimental' must match pattern '^[a-z]+(\.[a-z][a-z0-9][_]*)*$'. 16
 Warning sizes LineLength Line is longer than 100 characters (found 118). 29
 Warning indentation Indentation 'member def modifier' have incorrect indentation level 8, expected level should be 2. 31
 Warning whitespace FileTabCharacter Line contains a tab character. 31
 Warning whitespace FileTabCharacter Line contains a tab character. 33
 Warning whitespace FileTabCharacter Line contains a tab character. 34
 Warning whitespace FileTabCharacter Line contains a tab character. 35
 Warning whitespace FileTabCharacter Line contains a tab character. 36
 Warning whitespace FileTabCharacter Line contains a tab character. 37
 Warning whitespace FileTabCharacter Line contains a tab character. 38
 Warning whitespace FileTabCharacter Line contains a tab character. 39
 Warning whitespace FileTabCharacter Line contains a tab character. 40
 Warning whitespace FileTabCharacter Line contains a tab character. 41
 Warning indentation Indentation 'ctor def modifier' have incorrect indentation level 8, expected level should be 2. 42
 Warning whitespace FileTabCharacter Line contains a tab character. 42
 Warning indentation Indentation 'ctor def' child have incorrect indentation level 16, expected level should be 4. 43
 Warning whitespace FileTabCharacter Line contains a tab character. 43
 Warning indentation Indentation 'ctor def rcurly' have incorrect indentation level 8, expected level should be 2. 44
 Warning whitespace FileTabCharacter Line contains a tab character. 44
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 46
 Warning whitespace FileTabCharacter Line contains a tab character. 46
 Warning whitespace FileTabCharacter Line contains a tab character. 47
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 48
 Warning whitespace FileTabCharacter Line contains a tab character. 48
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 49
 Warning whitespace FileTabCharacter Line contains a tab character. 49
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 51
 Warning whitespace FileTabCharacter Line contains a tab character. 51
 Warning whitespace FileTabCharacter Line contains a tab character. 52
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 53
 Warning whitespace FileTabCharacter Line contains a tab character. 53
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 54
 Warning whitespace FileTabCharacter Line contains a tab character. 54
 Warning indentation Indentation 'method def modifier' have incorrect indentation level 8, expected level should be 2. 56
 Warning whitespace FileTabCharacter Line contains a tab character. 56
 Warning whitespace FileTabCharacter Line contains a tab character. 57
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 58
 Warning whitespace FileTabCharacter Line contains a tab character. 58
 Warning indentation Indentation 'method def' child have incorrect indentation level 16, expected level should be 4. 59
 Warning whitespace FileTabCharacter Line contains a tab character. 59
 Warning indentation Indentation 'method def rcurly' have incorrect indentation level 8, expected level should be 2. 60
 Warning whitespace FileTabCharacter Line contains a tab character. 60