Checkstyle Results

The following document contains the results of Checkstyle 12.1.1 with /config/dsol-checks.xml ruleset.

Summary

Files  Info  Warnings  Errors
17 45 1900 0

Files

File  I  W  E
nl/tudelft/simulation/dsol/animation/gis/osm/OsmEntityProcessor.java 0 25 0
nl/tudelft/simulation/dsol/animation/gis/osm/OsmFileCsvParser.java 0 4 0
nl/tudelft/simulation/dsol/animation/gis/osm/OsmFileJsonParser.java 1 8 0
nl/tudelft/simulation/dsol/animation/gis/osm/OsmFileYamlParser.java 0 8 0
nl/tudelft/simulation/dsol/animation/gis/osm/OsmPbfReader.java 0 1 0
nl/tudelft/simulation/dsol/animation/gis/osm/Relation.java 0 2 0
nl/tudelft/simulation/dsol/animation/gis/osm/pbf/OSMFileFormat.java 6 179 0
nl/tudelft/simulation/dsol/animation/gis/osm/pbf/OSMPBF.java 38 1673 0

Rules

Category Rule Violations Severity
blocks AvoidNestedBlocks
  • allowInSwitchCase: "true"
25  Warning
NeedBraces 207  Warning
coding EmptyStatement 2  Warning
MissingSwitchDefault 1  Warning
design HideUtilityClassConstructor 1  Warning
VisibilityModifier 13  Warning
javadoc JavadocMethod 282  Warning
JavadocStyle 707  Warning
JavadocVariable 352  Warning
misc TodoComment 2  Warning
modifier RedundantModifier 60  Warning
naming ConstantName 30  Warning
LocalVariableName 26  Warning
MemberName 174  Warning
sizes FileLength 2  Warning
LineLength
  • max: "128"
42  Info
MethodLength 3  Info
whitespace WhitespaceAfter 15  Warning
WhitespaceAround
  • tokens: "ASSIGN, BAND, BAND_ASSIGN, BOR, BOR_ASSIGN, BSR, BSR_ASSIGN, BXOR, BXOR_ASSIGN, COLON, DIV, DIV_ASSIGN, EQUAL, GE, GT, LAND, LE, LITERAL_ASSERT, LITERAL_CATCH, LITERAL_DO, LITERAL_ELSE, LITERAL_FINALLY, LITERAL_FOR, LITERAL_IF, LITERAL_RETURN, LITERAL_SYNCHRONIZED, LITERAL_TRY, LITERAL_WHILE, LOR, LT, MINUS, MINUS_ASSIGN, MOD, MOD_ASSIGN, NOT_EQUAL, PLUS, PLUS_ASSIGN, QUESTION, SL, SLIST, SL_ASSIGN, SR, SR_ASSIGN, STAR, STAR_ASSIGN, TYPE_EXTENSION_AND"
1  Warning

Details

nl/tudelft/simulation/dsol/animation/gis/osm/OsmEntityProcessor.java

Severity Category Rule Message Line
 Warning misc TodoComment Comment matches to-do format 'TODO:'. 44
 Warning misc TodoComment Comment matches to-do format 'TODO:'. 68
 Warning blocks NeedBraces 'if' construct must use '{}'s. 117
 Warning blocks NeedBraces 'if' construct must use '{}'s. 166
 Warning blocks NeedBraces 'if' construct must use '{}'s. 173
 Warning blocks NeedBraces 'else' construct must use '{}'s. 175
 Warning blocks NeedBraces 'for' construct must use '{}'s. 253
 Warning blocks NeedBraces 'for' construct must use '{}'s. 255
 Warning blocks NeedBraces 'if' construct must use '{}'s. 306
 Warning blocks NeedBraces 'if' construct must use '{}'s. 340
 Warning blocks NeedBraces 'if' construct must use '{}'s. 345
 Warning blocks NeedBraces 'if' construct must use '{}'s. 387
 Warning design VisibilityModifier Variable 'id' must be private and have accessor methods. 455
 Warning design VisibilityModifier Variable 'lat' must be private and have accessor methods. 458
 Warning design VisibilityModifier Variable 'lon' must be private and have accessor methods. 461
 Warning design VisibilityModifier Variable 'id' must be private and have accessor methods. 485
 Warning design VisibilityModifier Variable 'feature' must be private and have accessor methods. 488
 Warning design VisibilityModifier Variable 'wayNodesLat' must be private and have accessor methods. 491
 Warning design VisibilityModifier Variable 'wayNodesLon' must be private and have accessor methods. 494
 Warning design VisibilityModifier Variable 'wayNodesId' must be private and have accessor methods. 497
 Warning design VisibilityModifier Variable 'id' must be private and have accessor methods. 541
 Warning design VisibilityModifier Variable 'feature' must be private and have accessor methods. 544
 Warning design VisibilityModifier Variable 'outerWayIds' must be private and have accessor methods. 547
 Warning design VisibilityModifier Variable 'innerWayIds' must be private and have accessor methods. 550
 Warning design VisibilityModifier Variable 'name' must be private and have accessor methods. 553

nl/tudelft/simulation/dsol/animation/gis/osm/OsmFileCsvParser.java

Severity Category Rule Message Line
 Warning whitespace WhitespaceAfter 'for' is not followed by whitespace. 136
 Warning whitespace WhitespaceAround 'for' is not followed by whitespace. 136
 Warning blocks NeedBraces 'if' construct must use '{}'s. 168
 Warning blocks NeedBraces 'if' construct must use '{}'s. 170

nl/tudelft/simulation/dsol/animation/gis/osm/OsmFileJsonParser.java

Severity Category Rule Message Line
 Warning blocks NeedBraces 'if' construct must use '{}'s. 173
 Warning blocks NeedBraces 'if' construct must use '{}'s. 175
 Warning blocks NeedBraces 'if' construct must use '{}'s. 203
 Warning blocks NeedBraces 'if' construct must use '{}'s. 205
 Warning blocks NeedBraces 'if' construct must use '{}'s. 220
 Warning blocks NeedBraces 'if' construct must use '{}'s. 222
 Info sizes LineLength Line is longer than 128 characters (found 132). 235
 Warning blocks NeedBraces 'if' construct must use '{}'s. 237
 Warning blocks NeedBraces 'if' construct must use '{}'s. 239

nl/tudelft/simulation/dsol/animation/gis/osm/OsmFileYamlParser.java

Severity Category Rule Message Line
 Warning blocks NeedBraces 'if' construct must use '{}'s. 164
 Warning blocks NeedBraces 'if' construct must use '{}'s. 166
 Warning blocks NeedBraces 'if' construct must use '{}'s. 194
 Warning blocks NeedBraces 'if' construct must use '{}'s. 196
 Warning blocks NeedBraces 'if' construct must use '{}'s. 212
 Warning blocks NeedBraces 'if' construct must use '{}'s. 214
 Warning blocks NeedBraces 'if' construct must use '{}'s. 230
 Warning blocks NeedBraces 'if' construct must use '{}'s. 232

nl/tudelft/simulation/dsol/animation/gis/osm/OsmPbfReader.java

Severity Category Rule Message Line
 Warning design HideUtilityClassConstructor Utility classes should not have a public or default constructor. 32

nl/tudelft/simulation/dsol/animation/gis/osm/Relation.java

Severity Category Rule Message Line
 Warning modifier RedundantModifier Redundant 'static' modifier. 23
 Warning modifier RedundantModifier Redundant 'static' modifier. 41

nl/tudelft/simulation/dsol/animation/gis/osm/pbf/OSMFileFormat.java

Severity Category Rule Message Line
 Warning sizes FileLength File length is 2,637 lines (max allowed is 2,000). 1
 Warning javadoc JavadocStyle First sentence should end with a period. 39
 Warning javadoc JavadocStyle First sentence should end with a period. 49
 Warning javadoc JavadocStyle First sentence should end with a period. 59
 Warning javadoc JavadocStyle First sentence should end with a period. 69
 Warning javadoc JavadocStyle First sentence should end with a period. 99
 Warning javadoc JavadocStyle First sentence should end with a period. 109
 Warning javadoc JavadocStyle First sentence should end with a period. 143
 Warning javadoc JavadocStyle First sentence should end with a period. 153
 Warning javadoc JavadocStyle First sentence should end with a period. 163
 Warning javadoc JavadocStyle First sentence should end with a period. 173
 Warning javadoc JavadocStyle First sentence should end with a period. 186
 Warning modifier RedundantModifier Redundant 'final' modifier. 211
 Warning javadoc JavadocVariable Missing a Javadoc comment. 224
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 224
 Warning javadoc JavadocVariable Missing a Javadoc comment. 226
 Warning naming MemberName Name 'dataCase_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 226
 Warning javadoc JavadocVariable Missing a Javadoc comment. 228
 Warning naming MemberName Name 'data_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 229
 Warning javadoc JavadocVariable Missing a Javadoc comment. 234
 Warning javadoc JavadocVariable Missing a Javadoc comment. 235
 Warning javadoc JavadocVariable Missing a Javadoc comment. 236
 Warning javadoc JavadocVariable Missing a Javadoc comment. 237
 Warning javadoc JavadocVariable Missing a Javadoc comment. 239
 Warning javadoc JavadocVariable Missing a Javadoc comment. 240
 Warning javadoc JavadocVariable Missing a Javadoc comment. 241
 Warning javadoc JavadocVariable Missing a Javadoc comment. 243
 Warning modifier RedundantModifier Redundant 'private' modifier. 245
 Warning javadoc JavadocVariable Missing a Javadoc comment. 297
 Warning javadoc JavadocVariable Missing a Javadoc comment. 299
 Warning naming MemberName Name 'rawSize_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 299
 Warning javadoc JavadocStyle First sentence should end with a period. 301
 Warning javadoc JavadocStyle First sentence should end with a period. 315
 Warning javadoc JavadocVariable Missing a Javadoc comment. 329
 Warning javadoc JavadocStyle First sentence should end with a period. 331
 Warning javadoc JavadocStyle First sentence should end with a period. 345
 Warning javadoc JavadocVariable Missing a Javadoc comment. 363
 Warning javadoc JavadocVariable Missing a Javadoc comment. 397
 Warning javadoc JavadocStyle First sentence should end with a period. 399
 Warning javadoc JavadocStyle First sentence should end with a period. 413
 Warning javadoc JavadocVariable Missing a Javadoc comment. 431
 Warning javadoc JavadocVariable Missing a Javadoc comment. 469
 Warning javadoc JavadocStyle First sentence should end with a period. 471
 Warning javadoc JavadocStyle First sentence should end with a period. 485
 Warning javadoc JavadocVariable Missing a Javadoc comment. 503
 Warning javadoc JavadocStyle First sentence should end with a period. 505
 Warning javadoc JavadocStyle First sentence should end with a period. 519
 Warning javadoc JavadocVariable Missing a Javadoc comment. 537
 Warning modifier RedundantModifier Redundant 'final' modifier. 540
 Warning blocks NeedBraces 'if' construct must use '{}'s. 543
 Warning blocks NeedBraces 'if' construct must use '{}'s. 545
 Warning blocks NeedBraces 'if' construct must use '{}'s. 590
 Warning blocks NeedBraces 'if' construct must use '{}'s. 641
 Warning blocks NeedBraces 'if' construct must use '{}'s. 645
 Warning blocks NeedBraces 'if' construct must use '{}'s. 648
 Warning blocks NeedBraces 'if' construct must use '{}'s. 653
 Warning blocks NeedBraces 'if' construct must use '{}'s. 657
 Warning blocks NeedBraces 'if' construct must use '{}'s. 661
 Warning blocks NeedBraces 'if' construct must use '{}'s. 665
 Warning blocks NeedBraces 'if' construct must use '{}'s. 669
 Warning blocks NeedBraces 'if' construct must use '{}'s. 673
 Warning blocks NeedBraces 'if' construct must use '{}'s. 679
 Warning javadoc JavadocStyle First sentence should end with a period. 839
 Warning modifier RedundantModifier Redundant 'final' modifier. 846
 Info sizes LineLength Line is longer than 128 characters (found 132). 854
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 922
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 923
 Warning blocks NeedBraces 'if' construct must use '{}'s. 954
 Warning coding MissingSwitchDefault switch without "default" clause. 960
 Warning modifier RedundantModifier Redundant 'final' modifier. 1003
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1091
 Warning naming MemberName Name 'dataCase_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1091
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1093
 Warning naming MemberName Name 'data_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1093
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1109
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1109
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1111
 Warning naming MemberName Name 'rawSize_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1111
 Warning javadoc JavadocStyle First sentence should end with a period. 1113
 Warning javadoc JavadocStyle First sentence should end with a period. 1127
 Warning javadoc JavadocStyle First sentence should end with a period. 1141
 Warning javadoc JavadocStyle First sentence should end with a period. 1159
 Warning javadoc JavadocStyle First sentence should end with a period. 1175
 Warning javadoc JavadocStyle First sentence should end with a period. 1189
 Warning javadoc JavadocStyle First sentence should end with a period. 1207
 Warning javadoc JavadocStyle First sentence should end with a period. 1228
 Warning javadoc JavadocStyle First sentence should end with a period. 1319
 Warning javadoc JavadocStyle First sentence should end with a period. 1333
 Warning javadoc JavadocStyle First sentence should end with a period. 1351
 Warning javadoc JavadocStyle First sentence should end with a period. 1372
 Warning javadoc JavadocStyle First sentence should end with a period. 1471
 Warning javadoc JavadocStyle First sentence should end with a period. 1485
 Warning javadoc JavadocStyle First sentence should end with a period. 1503
 Warning javadoc JavadocStyle First sentence should end with a period. 1524
 Warning javadoc JavadocStyle First sentence should end with a period. 1543
 Warning javadoc JavadocStyle First sentence should end with a period. 1557
 Warning javadoc JavadocStyle First sentence should end with a period. 1575
 Warning javadoc JavadocStyle First sentence should end with a period. 1596
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1619
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1630
 Warning javadoc JavadocStyle First sentence should end with a period. 1683
 Warning javadoc JavadocStyle First sentence should end with a period. 1689
 Warning javadoc JavadocStyle First sentence should end with a period. 1695
 Warning javadoc JavadocStyle First sentence should end with a period. 1701
 Warning javadoc JavadocStyle First sentence should end with a period. 1707
 Warning javadoc JavadocStyle First sentence should end with a period. 1713
 Warning javadoc JavadocStyle First sentence should end with a period. 1719
 Warning javadoc JavadocStyle First sentence should end with a period. 1726
 Warning modifier RedundantModifier Redundant 'final' modifier. 1753
 Info sizes LineLength Line is longer than 128 characters (found 134). 1761
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1767
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1767
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1769
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1771
 Warning naming MemberName Name 'type_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1772
 Warning javadoc JavadocStyle First sentence should end with a period. 1774
 Warning javadoc JavadocStyle First sentence should end with a period. 1784
 Warning javadoc JavadocStyle First sentence should end with a period. 1808
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1828
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1830
 Warning naming MemberName Name 'indexdata_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1830
 Warning javadoc JavadocStyle First sentence should end with a period. 1832
 Warning javadoc JavadocStyle First sentence should end with a period. 1842
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1852
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1854
 Warning naming MemberName Name 'datasize_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1854
 Warning javadoc JavadocStyle First sentence should end with a period. 1856
 Warning javadoc JavadocStyle First sentence should end with a period. 1866
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1876
 Warning modifier RedundantModifier Redundant 'final' modifier. 1879
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1882
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1884
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1923
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1958
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1962
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1965
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1969
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1972
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1976
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1979
 Warning javadoc JavadocStyle First sentence should end with a period. 2121
 Warning modifier RedundantModifier Redundant 'final' modifier. 2128
 Info sizes LineLength Line is longer than 128 characters (found 131). 2130
 Info sizes LineLength Line is longer than 128 characters (found 138). 2136
 Info sizes LineLength Line is longer than 128 characters (found 131). 2168
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 2203
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 2204
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2239
 Warning modifier RedundantModifier Redundant 'final' modifier. 2261
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2333
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2333
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2335
 Warning naming MemberName Name 'type_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2335
 Warning javadoc JavadocStyle First sentence should end with a period. 2337
 Warning javadoc JavadocStyle First sentence should end with a period. 2347
 Warning javadoc JavadocStyle First sentence should end with a period. 2371
 Warning javadoc JavadocStyle First sentence should end with a period. 2391
 Warning javadoc JavadocStyle First sentence should end with a period. 2408
 Warning javadoc JavadocStyle First sentence should end with a period. 2420
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2437
 Warning naming MemberName Name 'indexdata_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2437
 Warning javadoc JavadocStyle First sentence should end with a period. 2439
 Warning javadoc JavadocStyle First sentence should end with a period. 2449
 Warning javadoc JavadocStyle First sentence should end with a period. 2459
 Warning javadoc JavadocStyle First sentence should end with a period. 2476
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2488
 Warning naming MemberName Name 'datasize_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2488
 Warning javadoc JavadocStyle First sentence should end with a period. 2490
 Warning javadoc JavadocStyle First sentence should end with a period. 2500
 Warning javadoc JavadocStyle First sentence should end with a period. 2510
 Warning javadoc JavadocStyle First sentence should end with a period. 2524
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2540
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2551
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2600
 Warning naming ConstantName Name 'internal_static_OSMPBF_Blob_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 2600
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2602
 Warning naming ConstantName Name 'internal_static_OSMPBF_Blob_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 2602
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2604
 Warning naming ConstantName Name 'internal_static_OSMPBF_BlobHeader_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 2604
 Info sizes LineLength Line is longer than 128 characters (found 134). 2606
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2606
 Warning naming ConstantName Name 'internal_static_OSMPBF_BlobHeader_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 2606
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2613
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 2628
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 2631

nl/tudelft/simulation/dsol/animation/gis/osm/pbf/OSMPBF.java

Severity Category Rule Message Line
 Warning sizes FileLength File length is 20,912 lines (max allowed is 2,000). 1
 Warning javadoc JavadocStyle First sentence should end with a period. 39
 Warning javadoc JavadocStyle First sentence should end with a period. 45
 Warning javadoc JavadocStyle First sentence should end with a period. 51
 Warning javadoc JavadocMethod @return tag should be present and have description. 54
 Warning javadoc JavadocStyle First sentence should end with a period. 56
 Warning javadoc JavadocStyle First sentence should end with a period. 66
 Warning javadoc JavadocStyle First sentence should end with a period. 76
 Warning javadoc JavadocStyle First sentence should end with a period. 87
 Warning javadoc JavadocStyle First sentence should end with a period. 98
 Warning javadoc JavadocStyle First sentence should end with a period. 104
 Warning javadoc JavadocStyle First sentence should end with a period. 110
 Warning javadoc JavadocStyle First sentence should end with a period. 117
 Warning javadoc JavadocStyle First sentence should end with a period. 124
 Warning javadoc JavadocStyle First sentence should end with a period. 130
 Warning javadoc JavadocStyle First sentence should end with a period. 136
 Warning javadoc JavadocStyle First sentence should end with a period. 247
 Warning modifier RedundantModifier Redundant 'final' modifier. 277
 Warning javadoc JavadocVariable Missing a Javadoc comment. 290
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 290
 Warning javadoc JavadocVariable Missing a Javadoc comment. 292
 Warning javadoc JavadocVariable Missing a Javadoc comment. 294
 Warning naming MemberName Name 'bbox_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 294
 Warning javadoc JavadocStyle First sentence should end with a period. 296
 Warning javadoc JavadocStyle First sentence should end with a period. 306
 Warning javadoc JavadocStyle First sentence should end with a period. 317
 Warning javadoc JavadocMethod @return tag should be present and have description. 320
 Warning javadoc JavadocVariable Missing a Javadoc comment. 327
 Warning javadoc JavadocVariable Missing a Javadoc comment. 329
 Warning naming MemberName Name 'requiredFeatures_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 330
 Warning javadoc JavadocStyle First sentence should end with a period. 332
 Warning javadoc JavadocStyle First sentence should end with a period. 346
 Warning javadoc JavadocStyle First sentence should end with a period. 360
 Warning javadoc JavadocStyle First sentence should end with a period. 375
 Warning javadoc JavadocVariable Missing a Javadoc comment. 390
 Warning javadoc JavadocVariable Missing a Javadoc comment. 392
 Warning naming MemberName Name 'optionalFeatures_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 393
 Warning javadoc JavadocStyle First sentence should end with a period. 395
 Warning javadoc JavadocStyle First sentence should end with a period. 405
 Warning javadoc JavadocStyle First sentence should end with a period. 415
 Warning javadoc JavadocStyle First sentence should end with a period. 426
 Warning javadoc JavadocVariable Missing a Javadoc comment. 437
 Warning javadoc JavadocVariable Missing a Javadoc comment. 439
 Warning naming MemberName Name 'writingprogram_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 440
 Warning javadoc JavadocStyle First sentence should end with a period. 442
 Warning javadoc JavadocStyle First sentence should end with a period. 452
 Warning javadoc JavadocStyle First sentence should end with a period. 476
 Warning javadoc JavadocVariable Missing a Javadoc comment. 496
 Warning javadoc JavadocVariable Missing a Javadoc comment. 498
 Warning naming MemberName Name 'source_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 499
 Warning javadoc JavadocVariable Missing a Javadoc comment. 567
 Warning javadoc JavadocVariable Missing a Javadoc comment. 569
 Warning naming MemberName Name 'osmosisReplicationTimestamp_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 569
 Warning javadoc JavadocVariable Missing a Javadoc comment. 603
 Warning javadoc JavadocVariable Missing a Javadoc comment. 605
 Warning naming MemberName Name 'osmosisReplicationSequenceNumber_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 605
 Warning javadoc JavadocVariable Missing a Javadoc comment. 635
 Warning javadoc JavadocVariable Missing a Javadoc comment. 637
 Warning naming MemberName Name 'osmosisReplicationBaseUrl_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 638
 Warning javadoc JavadocVariable Missing a Javadoc comment. 706
 Warning modifier RedundantModifier Redundant 'final' modifier. 709
 Warning blocks NeedBraces 'if' construct must use '{}'s. 712
 Warning blocks NeedBraces 'if' construct must use '{}'s. 714
 Warning blocks NeedBraces 'if' construct must use '{}'s. 771
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 779
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 788
 Warning blocks NeedBraces 'if' construct must use '{}'s. 836
 Warning blocks NeedBraces 'if' construct must use '{}'s. 840
 Warning blocks NeedBraces 'if' construct must use '{}'s. 843
 Warning blocks NeedBraces 'if' construct must use '{}'s. 845
 Warning blocks NeedBraces 'if' construct must use '{}'s. 847
 Warning blocks NeedBraces 'if' construct must use '{}'s. 851
 Warning blocks NeedBraces 'if' construct must use '{}'s. 854
 Warning blocks NeedBraces 'if' construct must use '{}'s. 858
 Warning blocks NeedBraces 'if' construct must use '{}'s. 861
 Warning blocks NeedBraces 'if' construct must use '{}'s. 865
 Warning blocks NeedBraces 'if' construct must use '{}'s. 868
 Warning blocks NeedBraces 'if' construct must use '{}'s. 872
 Warning blocks NeedBraces 'if' construct must use '{}'s. 875
 Warning blocks NeedBraces 'if' construct must use '{}'s. 879
 Warning blocks NeedBraces 'if' construct must use '{}'s. 882
 Warning javadoc JavadocStyle First sentence should end with a period. 1048
 Warning modifier RedundantModifier Redundant 'final' modifier. 1055
 Info sizes LineLength Line is longer than 128 characters (found 132). 1063
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 1148
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 1149
 Warning blocks NeedBraces 'if' construct must use '{}'s. 1209
 Warning modifier RedundantModifier Redundant 'final' modifier. 1275
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1378
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1378
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1380
 Warning naming MemberName Name 'bbox_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1380
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1382
 Warning naming MemberName Name 'bboxBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1384
 Warning javadoc JavadocStyle First sentence should end with a period. 1386
 Warning javadoc JavadocStyle First sentence should end with a period. 1396
 Warning javadoc JavadocStyle First sentence should end with a period. 1415
 Warning javadoc JavadocMethod @return tag should be present and have description. 1418
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 1418
 Warning javadoc JavadocStyle First sentence should end with a period. 1437
 Warning javadoc JavadocMethod @return tag should be present and have description. 1440
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 1441
 Warning javadoc JavadocStyle First sentence should end with a period. 1456
 Warning javadoc JavadocMethod @return tag should be present and have description. 1459
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 1459
 Warning javadoc JavadocStyle First sentence should end with a period. 1486
 Warning javadoc JavadocMethod @return tag should be present and have description. 1489
 Warning javadoc JavadocStyle First sentence should end with a period. 1502
 Warning javadoc JavadocMethod @return tag should be present and have description. 1505
 Warning javadoc JavadocStyle First sentence should end with a period. 1512
 Warning javadoc JavadocStyle First sentence should end with a period. 1530
 Warning javadoc JavadocMethod @return tag should be present and have description. 1533
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1549
 Warning naming MemberName Name 'requiredFeatures_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1549
 Warning javadoc JavadocStyle First sentence should end with a period. 1561
 Warning javadoc JavadocStyle First sentence should end with a period. 1576
 Warning javadoc JavadocStyle First sentence should end with a period. 1590
 Warning javadoc JavadocStyle First sentence should end with a period. 1605
 Warning javadoc JavadocStyle First sentence should end with a period. 1620
 Warning javadoc JavadocStyle First sentence should end with a period. 1643
 Warning javadoc JavadocStyle First sentence should end with a period. 1665
 Warning javadoc JavadocStyle First sentence should end with a period. 1683
 Warning coding EmptyStatement Empty statement. 1695
 Warning javadoc JavadocStyle First sentence should end with a period. 1700
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1722
 Warning naming MemberName Name 'optionalFeatures_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1722
 Warning javadoc JavadocStyle First sentence should end with a period. 1734
 Warning javadoc JavadocStyle First sentence should end with a period. 1745
 Warning javadoc JavadocStyle First sentence should end with a period. 1755
 Warning javadoc JavadocStyle First sentence should end with a period. 1766
 Warning javadoc JavadocStyle First sentence should end with a period. 1777
 Warning javadoc JavadocStyle First sentence should end with a period. 1796
 Warning javadoc JavadocStyle First sentence should end with a period. 1814
 Warning javadoc JavadocStyle First sentence should end with a period. 1828
 Warning coding EmptyStatement Empty statement. 1836
 Warning javadoc JavadocStyle First sentence should end with a period. 1841
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1859
 Warning naming MemberName Name 'writingprogram_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1859
 Warning javadoc JavadocStyle First sentence should end with a period. 1861
 Warning javadoc JavadocStyle First sentence should end with a period. 1871
 Warning javadoc JavadocStyle First sentence should end with a period. 1895
 Warning javadoc JavadocStyle First sentence should end with a period. 1915
 Warning javadoc JavadocStyle First sentence should end with a period. 1932
 Warning javadoc JavadocStyle First sentence should end with a period. 1944
 Warning javadoc JavadocVariable Missing a Javadoc comment. 1961
 Warning naming MemberName Name 'source_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 1961
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2087
 Warning naming MemberName Name 'osmosisReplicationTimestamp_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2087
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2159
 Warning naming MemberName Name 'osmosisReplicationSequenceNumber_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2159
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2223
 Warning naming MemberName Name 'osmosisReplicationBaseUrl_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2223
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2353
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2364
 Warning javadoc JavadocStyle First sentence should end with a period. 2418
 Warning javadoc JavadocStyle First sentence should end with a period. 2424
 Warning javadoc JavadocStyle First sentence should end with a period. 2430
 Warning javadoc JavadocStyle First sentence should end with a period. 2436
 Warning javadoc JavadocStyle First sentence should end with a period. 2442
 Warning javadoc JavadocStyle First sentence should end with a period. 2448
 Warning javadoc JavadocStyle First sentence should end with a period. 2454
 Warning javadoc JavadocStyle First sentence should end with a period. 2460
 Warning javadoc JavadocStyle First sentence should end with a period. 2467
 Warning modifier RedundantModifier Redundant 'final' modifier. 2492
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2505
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2505
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2507
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2509
 Warning naming MemberName Name 'left_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2509
 Warning javadoc JavadocStyle First sentence should end with a period. 2511
 Warning javadoc JavadocStyle First sentence should end with a period. 2521
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2531
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2533
 Warning naming MemberName Name 'right_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2533
 Warning javadoc JavadocStyle First sentence should end with a period. 2535
 Warning javadoc JavadocStyle First sentence should end with a period. 2545
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2555
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2557
 Warning naming MemberName Name 'top_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2557
 Warning javadoc JavadocStyle First sentence should end with a period. 2559
 Warning javadoc JavadocStyle First sentence should end with a period. 2569
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2579
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2581
 Warning naming MemberName Name 'bottom_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 2581
 Warning javadoc JavadocStyle First sentence should end with a period. 2583
 Warning javadoc JavadocStyle First sentence should end with a period. 2593
 Warning javadoc JavadocVariable Missing a Javadoc comment. 2603
 Warning modifier RedundantModifier Redundant 'final' modifier. 2606
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2609
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2611
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2664
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2703
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2707
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2710
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2714
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2717
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2721
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2724
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2728
 Warning blocks NeedBraces 'if' construct must use '{}'s. 2731
 Warning javadoc JavadocStyle First sentence should end with a period. 2877
 Warning modifier RedundantModifier Redundant 'final' modifier. 2884
 Info sizes LineLength Line is longer than 128 characters (found 131). 2892
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 2960
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 2961
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3001
 Warning modifier RedundantModifier Redundant 'final' modifier. 3025
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3111
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3111
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3113
 Warning naming MemberName Name 'left_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3113
 Warning javadoc JavadocStyle First sentence should end with a period. 3115
 Warning javadoc JavadocStyle First sentence should end with a period. 3125
 Warning javadoc JavadocStyle First sentence should end with a period. 3135
 Warning javadoc JavadocStyle First sentence should end with a period. 3149
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3161
 Warning naming MemberName Name 'right_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3161
 Warning javadoc JavadocStyle First sentence should end with a period. 3163
 Warning javadoc JavadocStyle First sentence should end with a period. 3173
 Warning javadoc JavadocStyle First sentence should end with a period. 3183
 Warning javadoc JavadocStyle First sentence should end with a period. 3197
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3209
 Warning naming MemberName Name 'top_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3209
 Warning javadoc JavadocStyle First sentence should end with a period. 3211
 Warning javadoc JavadocStyle First sentence should end with a period. 3221
 Warning javadoc JavadocStyle First sentence should end with a period. 3231
 Warning javadoc JavadocStyle First sentence should end with a period. 3245
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3257
 Warning naming MemberName Name 'bottom_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3257
 Warning javadoc JavadocStyle First sentence should end with a period. 3259
 Warning javadoc JavadocStyle First sentence should end with a period. 3269
 Warning javadoc JavadocStyle First sentence should end with a period. 3279
 Warning javadoc JavadocStyle First sentence should end with a period. 3293
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3309
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3320
 Warning javadoc JavadocStyle First sentence should end with a period. 3374
 Warning javadoc JavadocStyle First sentence should end with a period. 3380
 Warning javadoc JavadocStyle First sentence should end with a period. 3386
 Warning javadoc JavadocMethod @return tag should be present and have description. 3389
 Warning javadoc JavadocStyle First sentence should end with a period. 3391
 Warning javadoc JavadocMethod @return tag should be present and have description. 3394
 Warning javadoc JavadocStyle First sentence should end with a period. 3396
 Warning javadoc JavadocMethod @return tag should be present and have description. 3399
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 3399
 Warning javadoc JavadocStyle First sentence should end with a period. 3401
 Warning javadoc JavadocMethod @return tag should be present and have description. 3404
 Warning javadoc JavadocStyle First sentence should end with a period. 3406
 Warning javadoc JavadocMethod @return tag should be present and have description. 3409
 Info sizes LineLength Line is longer than 128 characters (found 140). 3410
 Warning javadoc JavadocStyle First sentence should end with a period. 3412
 Warning javadoc JavadocMethod @return tag should be present and have description. 3415
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 3415
 Warning javadoc JavadocStyle First sentence should end with a period. 3457
 Warning javadoc JavadocStyle First sentence should end with a period. 3463
 Warning javadoc JavadocStyle First sentence should end with a period. 3490
 Warning modifier RedundantModifier Redundant 'final' modifier. 3518
 Info sizes LineLength Line is longer than 128 characters (found 131). 3526
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3532
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3532
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3534
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3536
 Warning naming MemberName Name 'stringtable_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3536
 Warning javadoc JavadocStyle First sentence should end with a period. 3538
 Warning javadoc JavadocStyle First sentence should end with a period. 3548
 Warning javadoc JavadocStyle First sentence should end with a period. 3560
 Warning javadoc JavadocMethod @return tag should be present and have description. 3563
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3571
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3573
 Warning naming MemberName Name 'primitivegroup_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3574
 Warning javadoc JavadocStyle First sentence should end with a period. 3576
 Warning javadoc JavadocMethod @return tag should be present and have description. 3579
 Warning javadoc JavadocStyle First sentence should end with a period. 3585
 Warning javadoc JavadocMethod @return tag should be present and have description. 3588
 Info sizes LineLength Line is longer than 128 characters (found 139). 3590
 Warning javadoc JavadocStyle First sentence should end with a period. 3595
 Warning javadoc JavadocMethod @return tag should be present and have description. 3598
 Warning javadoc JavadocStyle First sentence should end with a period. 3604
 Warning javadoc JavadocMethod @return tag should be present and have description. 3607
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 3608
 Warning javadoc JavadocStyle First sentence should end with a period. 3613
 Warning javadoc JavadocMethod @return tag should be present and have description. 3616
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 3618
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3623
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3625
 Warning naming MemberName Name 'granularity_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3625
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3655
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3657
 Warning naming MemberName Name 'latOffset_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3657
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3687
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3689
 Warning naming MemberName Name 'lonOffset_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3689
 Warning javadoc JavadocStyle First sentence should end with a period. 3691
 Warning javadoc JavadocStyle First sentence should end with a period. 3701
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3711
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3713
 Warning naming MemberName Name 'dateGranularity_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 3713
 Warning javadoc JavadocVariable Missing a Javadoc comment. 3743
 Warning modifier RedundantModifier Redundant 'final' modifier. 3746
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3749
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3751
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3805
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3852
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3856
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3859
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3861
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3865
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3868
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3872
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3875
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3879
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3882
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3886
 Warning blocks NeedBraces 'if' construct must use '{}'s. 3889
 Warning javadoc JavadocStyle First sentence should end with a period. 4045
 Warning modifier RedundantModifier Redundant 'final' modifier. 4052
 Info sizes LineLength Line is longer than 128 characters (found 135). 4060
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 4172
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 4173
 Warning blocks NeedBraces 'if' construct must use '{}'s. 4219
 Warning modifier RedundantModifier Redundant 'final' modifier. 4283
 Warning javadoc JavadocVariable Missing a Javadoc comment. 4386
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 4386
 Warning javadoc JavadocVariable Missing a Javadoc comment. 4388
 Warning naming MemberName Name 'stringtable_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 4388
 Warning javadoc JavadocVariable Missing a Javadoc comment. 4390
 Warning naming MemberName Name 'stringtableBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 4392
 Warning javadoc JavadocStyle First sentence should end with a period. 4394
 Warning javadoc JavadocStyle First sentence should end with a period. 4404
 Warning javadoc JavadocStyle First sentence should end with a period. 4423
 Warning javadoc JavadocMethod @return tag should be present and have description. 4426
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 4426
 Warning javadoc JavadocStyle First sentence should end with a period. 4445
 Warning javadoc JavadocMethod @return tag should be present and have description. 4448
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 4449
 Warning javadoc JavadocStyle First sentence should end with a period. 4464
 Warning javadoc JavadocMethod @return tag should be present and have description. 4467
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 4467
 Warning javadoc JavadocStyle First sentence should end with a period. 4494
 Warning javadoc JavadocMethod @return tag should be present and have description. 4497
 Warning javadoc JavadocStyle First sentence should end with a period. 4510
 Warning javadoc JavadocMethod @return tag should be present and have description. 4513
 Warning javadoc JavadocStyle First sentence should end with a period. 4520
 Warning javadoc JavadocStyle First sentence should end with a period. 4538
 Warning javadoc JavadocMethod @return tag should be present and have description. 4541
 Info sizes LineLength Line is longer than 128 characters (found 134). 4543
 Warning javadoc JavadocVariable Missing a Javadoc comment. 4557
 Warning naming MemberName Name 'primitivegroup_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 4557
 Warning javadoc JavadocVariable Missing a Javadoc comment. 4571
 Warning naming MemberName Name 'primitivegroupBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 4574
 Warning javadoc JavadocStyle First sentence should end with a period. 4576
 Warning javadoc JavadocStyle First sentence should end with a period. 4593
 Warning javadoc JavadocStyle First sentence should end with a period. 4609
 Warning javadoc JavadocStyle First sentence should end with a period. 4625
 Warning javadoc JavadocMethod @return tag should be present and have description. 4628
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 4628
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 4629
 Warning javadoc JavadocStyle First sentence should end with a period. 4648
 Warning javadoc JavadocMethod @return tag should be present and have description. 4651
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 4651
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 4652
 Warning javadoc JavadocStyle First sentence should end with a period. 4667
 Warning javadoc JavadocMethod @return tag should be present and have description. 4670
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 4670
 Warning javadoc JavadocStyle First sentence should end with a period. 4689
 Warning javadoc JavadocMethod @return tag should be present and have description. 4692
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 4692
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 4693
 Warning javadoc JavadocStyle First sentence should end with a period. 4712
 Warning javadoc JavadocMethod @return tag should be present and have description. 4715
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 4716
 Warning javadoc JavadocStyle First sentence should end with a period. 4731
 Warning javadoc JavadocMethod @return tag should be present and have description. 4734
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 4734
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 4735
 Warning javadoc JavadocStyle First sentence should end with a period. 4750
 Warning javadoc JavadocMethod @return tag should be present and have description. 4753
 Warning javadoc JavadocMethod Expected @param tag for 'values'. 4754
 Warning javadoc JavadocStyle First sentence should end with a period. 4769
 Warning javadoc JavadocMethod @return tag should be present and have description. 4772
 Warning javadoc JavadocStyle First sentence should end with a period. 4787
 Warning javadoc JavadocMethod @return tag should be present and have description. 4790
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 4790
 Warning javadoc JavadocStyle First sentence should end with a period. 4805
 Warning javadoc JavadocMethod @return tag should be present and have description. 4808
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 4809
 Warning javadoc JavadocStyle First sentence should end with a period. 4814
 Warning javadoc JavadocStyle First sentence should end with a period. 4831
 Info sizes LineLength Line is longer than 128 characters (found 143). 4836
 Warning javadoc JavadocStyle First sentence should end with a period. 4848
 Warning javadoc JavadocMethod @return tag should be present and have description. 4851
 Warning javadoc JavadocStyle First sentence should end with a period. 4857
 Warning javadoc JavadocMethod @return tag should be present and have description. 4860
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 4861
 Warning javadoc JavadocStyle First sentence should end with a period. 4867
 Warning javadoc JavadocMethod @return tag should be present and have description. 4870
 Info sizes LineLength Line is longer than 128 characters (found 130). 4871
 Info sizes LineLength Line is longer than 128 characters (found 140). 4879
 Warning javadoc JavadocVariable Missing a Javadoc comment. 4894
 Warning naming MemberName Name 'granularity_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 4894
 Warning javadoc JavadocVariable Missing a Javadoc comment. 4958
 Warning naming MemberName Name 'latOffset_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 4958
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5022
 Warning naming MemberName Name 'lonOffset_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 5022
 Warning javadoc JavadocStyle First sentence should end with a period. 5024
 Warning javadoc JavadocStyle First sentence should end with a period. 5034
 Warning javadoc JavadocStyle First sentence should end with a period. 5044
 Warning javadoc JavadocStyle First sentence should end with a period. 5058
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5070
 Warning naming MemberName Name 'dateGranularity_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 5070
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5138
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5149
 Warning javadoc JavadocStyle First sentence should end with a period. 5203
 Warning javadoc JavadocMethod @return tag should be present and have description. 5206
 Warning javadoc JavadocStyle First sentence should end with a period. 5208
 Warning javadoc JavadocMethod @return tag should be present and have description. 5211
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5211
 Warning javadoc JavadocStyle First sentence should end with a period. 5213
 Warning javadoc JavadocMethod @return tag should be present and have description. 5216
 Warning javadoc JavadocStyle First sentence should end with a period. 5218
 Warning javadoc JavadocMethod @return tag should be present and have description. 5221
 Warning javadoc JavadocStyle First sentence should end with a period. 5223
 Warning javadoc JavadocMethod @return tag should be present and have description. 5226
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5226
 Warning javadoc JavadocStyle First sentence should end with a period. 5228
 Warning javadoc JavadocStyle First sentence should end with a period. 5234
 Warning javadoc JavadocStyle First sentence should end with a period. 5240
 Warning javadoc JavadocMethod @return tag should be present and have description. 5243
 Warning javadoc JavadocStyle First sentence should end with a period. 5245
 Warning javadoc JavadocMethod @return tag should be present and have description. 5248
 Warning javadoc JavadocStyle First sentence should end with a period. 5250
 Warning javadoc JavadocMethod @return tag should be present and have description. 5253
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5253
 Warning javadoc JavadocStyle First sentence should end with a period. 5255
 Warning javadoc JavadocMethod @return tag should be present and have description. 5258
 Warning javadoc JavadocStyle First sentence should end with a period. 5260
 Warning javadoc JavadocMethod @return tag should be present and have description. 5263
 Warning javadoc JavadocStyle First sentence should end with a period. 5265
 Warning javadoc JavadocMethod @return tag should be present and have description. 5268
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5268
 Warning javadoc JavadocStyle First sentence should end with a period. 5270
 Warning javadoc JavadocMethod @return tag should be present and have description. 5273
 Warning javadoc JavadocStyle First sentence should end with a period. 5275
 Warning javadoc JavadocMethod @return tag should be present and have description. 5278
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5278
 Warning javadoc JavadocStyle First sentence should end with a period. 5280
 Warning javadoc JavadocMethod @return tag should be present and have description. 5283
 Warning javadoc JavadocStyle First sentence should end with a period. 5285
 Warning javadoc JavadocMethod @return tag should be present and have description. 5288
 Info sizes LineLength Line is longer than 128 characters (found 129). 5289
 Warning javadoc JavadocStyle First sentence should end with a period. 5291
 Warning javadoc JavadocMethod @return tag should be present and have description. 5294
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5294
 Warning javadoc JavadocStyle First sentence should end with a period. 5296
 Warning javadoc JavadocMethod @return tag should be present and have description. 5299
 Warning javadoc JavadocStyle First sentence should end with a period. 5301
 Warning javadoc JavadocMethod @return tag should be present and have description. 5304
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5304
 Warning javadoc JavadocStyle First sentence should end with a period. 5306
 Warning javadoc JavadocMethod @return tag should be present and have description. 5309
 Warning javadoc JavadocStyle First sentence should end with a period. 5311
 Warning javadoc JavadocMethod @return tag should be present and have description. 5314
 Info sizes LineLength Line is longer than 128 characters (found 131). 5315
 Warning javadoc JavadocStyle First sentence should end with a period. 5317
 Warning javadoc JavadocMethod @return tag should be present and have description. 5320
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5320
 Warning modifier RedundantModifier Redundant 'final' modifier. 5356
 Info sizes LineLength Line is longer than 128 characters (found 131). 5364
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5370
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 5370
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5372
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5374
 Warning naming MemberName Name 'nodes_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 5375
 Warning javadoc JavadocStyle First sentence should end with a period. 5377
 Warning javadoc JavadocMethod @return tag should be present and have description. 5380
 Warning javadoc JavadocStyle First sentence should end with a period. 5386
 Warning javadoc JavadocMethod @return tag should be present and have description. 5389
 Warning javadoc JavadocStyle First sentence should end with a period. 5396
 Warning javadoc JavadocMethod @return tag should be present and have description. 5399
 Warning javadoc JavadocStyle First sentence should end with a period. 5405
 Warning javadoc JavadocMethod @return tag should be present and have description. 5408
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5409
 Warning javadoc JavadocStyle First sentence should end with a period. 5414
 Warning javadoc JavadocMethod @return tag should be present and have description. 5417
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5418
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5423
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5425
 Warning naming MemberName Name 'dense_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 5425
 Warning javadoc JavadocStyle First sentence should end with a period. 5427
 Warning javadoc JavadocStyle First sentence should end with a period. 5437
 Warning javadoc JavadocStyle First sentence should end with a period. 5448
 Warning javadoc JavadocMethod @return tag should be present and have description. 5451
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5458
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5460
 Warning naming MemberName Name 'ways_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 5461
 Warning javadoc JavadocStyle First sentence should end with a period. 5463
 Warning javadoc JavadocMethod @return tag should be present and have description. 5466
 Warning javadoc JavadocStyle First sentence should end with a period. 5472
 Warning javadoc JavadocMethod @return tag should be present and have description. 5475
 Warning javadoc JavadocStyle First sentence should end with a period. 5482
 Warning javadoc JavadocMethod @return tag should be present and have description. 5485
 Warning javadoc JavadocStyle First sentence should end with a period. 5491
 Warning javadoc JavadocMethod @return tag should be present and have description. 5494
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5495
 Warning javadoc JavadocStyle First sentence should end with a period. 5500
 Warning javadoc JavadocMethod @return tag should be present and have description. 5503
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5504
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5509
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5511
 Warning naming MemberName Name 'relations_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 5512
 Warning javadoc JavadocStyle First sentence should end with a period. 5514
 Warning javadoc JavadocMethod @return tag should be present and have description. 5517
 Warning javadoc JavadocStyle First sentence should end with a period. 5523
 Warning javadoc JavadocMethod @return tag should be present and have description. 5526
 Warning javadoc JavadocStyle First sentence should end with a period. 5533
 Warning javadoc JavadocMethod @return tag should be present and have description. 5536
 Warning javadoc JavadocStyle First sentence should end with a period. 5542
 Warning javadoc JavadocMethod @return tag should be present and have description. 5545
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5546
 Warning javadoc JavadocStyle First sentence should end with a period. 5551
 Warning javadoc JavadocMethod @return tag should be present and have description. 5554
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5555
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5560
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5562
 Warning naming MemberName Name 'changesets_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 5563
 Warning javadoc JavadocStyle First sentence should end with a period. 5565
 Warning javadoc JavadocMethod @return tag should be present and have description. 5568
 Warning javadoc JavadocStyle First sentence should end with a period. 5574
 Warning javadoc JavadocMethod @return tag should be present and have description. 5577
 Info sizes LineLength Line is longer than 128 characters (found 130). 5579
 Warning javadoc JavadocStyle First sentence should end with a period. 5584
 Warning javadoc JavadocMethod @return tag should be present and have description. 5587
 Warning javadoc JavadocStyle First sentence should end with a period. 5593
 Warning javadoc JavadocMethod @return tag should be present and have description. 5596
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5597
 Warning javadoc JavadocStyle First sentence should end with a period. 5602
 Warning javadoc JavadocMethod @return tag should be present and have description. 5605
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 5607
 Warning javadoc JavadocVariable Missing a Javadoc comment. 5612
 Warning modifier RedundantModifier Redundant 'final' modifier. 5615
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5618
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5620
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5689
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5732
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5734
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5738
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5741
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5743
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5745
 Warning blocks NeedBraces 'if' construct must use '{}'s. 5747
 Warning modifier RedundantModifier Redundant 'final' modifier. 5909
 Info sizes LineLength Line is longer than 128 characters (found 135). 5917
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 6097
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 6098
 Info sizes MethodLength Method mergeFrom length is 155 lines (max allowed is 150). 6121
 Warning blocks NeedBraces 'if' construct must use '{}'s. 6123
 Warning modifier RedundantModifier Redundant 'final' modifier. 6279
 Warning javadoc JavadocVariable Missing a Javadoc comment. 6423
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 6423
 Warning javadoc JavadocVariable Missing a Javadoc comment. 6425
 Warning naming MemberName Name 'nodes_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 6425
 Warning javadoc JavadocVariable Missing a Javadoc comment. 6438
 Warning naming MemberName Name 'nodesBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 6440
 Warning javadoc JavadocStyle First sentence should end with a period. 6442
 Warning javadoc JavadocStyle First sentence should end with a period. 6458
 Warning javadoc JavadocStyle First sentence should end with a period. 6474
 Warning javadoc JavadocStyle First sentence should end with a period. 6490
 Warning javadoc JavadocMethod @return tag should be present and have description. 6493
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 6493
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 6493
 Warning javadoc JavadocStyle First sentence should end with a period. 6512
 Warning javadoc JavadocMethod @return tag should be present and have description. 6515
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 6515
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 6516
 Warning javadoc JavadocStyle First sentence should end with a period. 6531
 Warning javadoc JavadocMethod @return tag should be present and have description. 6534
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 6534
 Warning javadoc JavadocStyle First sentence should end with a period. 6553
 Warning javadoc JavadocMethod @return tag should be present and have description. 6556
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 6556
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 6556
 Warning javadoc JavadocStyle First sentence should end with a period. 6575
 Warning javadoc JavadocMethod @return tag should be present and have description. 6578
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 6578
 Warning javadoc JavadocStyle First sentence should end with a period. 6593
 Warning javadoc JavadocMethod @return tag should be present and have description. 6596
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 6596
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 6597
 Warning javadoc JavadocStyle First sentence should end with a period. 6612
 Warning javadoc JavadocMethod @return tag should be present and have description. 6615
 Warning javadoc JavadocMethod Expected @param tag for 'values'. 6616
 Warning javadoc JavadocStyle First sentence should end with a period. 6631
 Warning javadoc JavadocMethod @return tag should be present and have description. 6634
 Warning javadoc JavadocStyle First sentence should end with a period. 6649
 Warning javadoc JavadocMethod @return tag should be present and have description. 6652
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 6652
 Warning javadoc JavadocStyle First sentence should end with a period. 6667
 Warning javadoc JavadocMethod @return tag should be present and have description. 6670
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 6670
 Warning javadoc JavadocStyle First sentence should end with a period. 6675
 Warning javadoc JavadocStyle First sentence should end with a period. 6691
 Warning javadoc JavadocStyle First sentence should end with a period. 6708
 Warning javadoc JavadocMethod @return tag should be present and have description. 6711
 Warning javadoc JavadocStyle First sentence should end with a period. 6717
 Warning javadoc JavadocMethod @return tag should be present and have description. 6720
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 6720
 Warning javadoc JavadocStyle First sentence should end with a period. 6726
 Warning javadoc JavadocMethod @return tag should be present and have description. 6729
 Warning javadoc JavadocVariable Missing a Javadoc comment. 6750
 Warning naming MemberName Name 'dense_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 6750
 Warning javadoc JavadocVariable Missing a Javadoc comment. 6752
 Warning naming MemberName Name 'denseBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 6754
 Warning javadoc JavadocStyle First sentence should end with a period. 6756
 Warning javadoc JavadocStyle First sentence should end with a period. 6766
 Warning javadoc JavadocStyle First sentence should end with a period. 6785
 Warning javadoc JavadocMethod @return tag should be present and have description. 6788
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 6788
 Warning javadoc JavadocStyle First sentence should end with a period. 6807
 Warning javadoc JavadocMethod @return tag should be present and have description. 6810
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 6811
 Warning javadoc JavadocStyle First sentence should end with a period. 6826
 Warning javadoc JavadocMethod @return tag should be present and have description. 6829
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 6829
 Warning javadoc JavadocStyle First sentence should end with a period. 6856
 Warning javadoc JavadocMethod @return tag should be present and have description. 6859
 Warning javadoc JavadocStyle First sentence should end with a period. 6872
 Warning javadoc JavadocMethod @return tag should be present and have description. 6875
 Warning javadoc JavadocStyle First sentence should end with a period. 6882
 Warning javadoc JavadocStyle First sentence should end with a period. 6900
 Warning javadoc JavadocMethod @return tag should be present and have description. 6903
 Warning javadoc JavadocVariable Missing a Javadoc comment. 6919
 Warning naming MemberName Name 'ways_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 6919
 Warning javadoc JavadocVariable Missing a Javadoc comment. 6932
 Warning naming MemberName Name 'waysBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 6934
 Warning javadoc JavadocStyle First sentence should end with a period. 6936
 Warning javadoc JavadocStyle First sentence should end with a period. 6952
 Warning javadoc JavadocStyle First sentence should end with a period. 6968
 Warning javadoc JavadocStyle First sentence should end with a period. 6984
 Warning javadoc JavadocMethod @return tag should be present and have description. 6987
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 6987
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 6987
 Warning javadoc JavadocStyle First sentence should end with a period. 7006
 Warning javadoc JavadocMethod @return tag should be present and have description. 7009
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7009
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 7010
 Warning javadoc JavadocStyle First sentence should end with a period. 7025
 Warning javadoc JavadocMethod @return tag should be present and have description. 7028
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 7028
 Warning javadoc JavadocStyle First sentence should end with a period. 7047
 Warning javadoc JavadocMethod @return tag should be present and have description. 7050
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7050
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 7050
 Warning javadoc JavadocStyle First sentence should end with a period. 7069
 Warning javadoc JavadocMethod @return tag should be present and have description. 7072
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 7072
 Warning javadoc JavadocStyle First sentence should end with a period. 7087
 Warning javadoc JavadocMethod @return tag should be present and have description. 7090
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7090
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 7091
 Warning javadoc JavadocStyle First sentence should end with a period. 7106
 Warning javadoc JavadocMethod @return tag should be present and have description. 7109
 Warning javadoc JavadocMethod Expected @param tag for 'values'. 7110
 Warning javadoc JavadocStyle First sentence should end with a period. 7125
 Warning javadoc JavadocMethod @return tag should be present and have description. 7128
 Warning javadoc JavadocStyle First sentence should end with a period. 7143
 Warning javadoc JavadocMethod @return tag should be present and have description. 7146
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7146
 Warning javadoc JavadocStyle First sentence should end with a period. 7161
 Warning javadoc JavadocMethod @return tag should be present and have description. 7164
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7164
 Warning javadoc JavadocStyle First sentence should end with a period. 7169
 Warning javadoc JavadocStyle First sentence should end with a period. 7185
 Warning javadoc JavadocStyle First sentence should end with a period. 7202
 Warning javadoc JavadocMethod @return tag should be present and have description. 7205
 Warning javadoc JavadocStyle First sentence should end with a period. 7211
 Warning javadoc JavadocMethod @return tag should be present and have description. 7214
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7214
 Warning javadoc JavadocStyle First sentence should end with a period. 7220
 Warning javadoc JavadocMethod @return tag should be present and have description. 7223
 Warning javadoc JavadocVariable Missing a Javadoc comment. 7244
 Warning naming MemberName Name 'relations_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 7244
 Warning javadoc JavadocVariable Missing a Javadoc comment. 7257
 Warning naming MemberName Name 'relationsBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 7259
 Warning javadoc JavadocStyle First sentence should end with a period. 7261
 Warning javadoc JavadocStyle First sentence should end with a period. 7277
 Warning javadoc JavadocStyle First sentence should end with a period. 7293
 Warning javadoc JavadocStyle First sentence should end with a period. 7309
 Warning javadoc JavadocMethod @return tag should be present and have description. 7312
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7312
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 7313
 Warning javadoc JavadocStyle First sentence should end with a period. 7332
 Warning javadoc JavadocMethod @return tag should be present and have description. 7335
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7335
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 7336
 Warning javadoc JavadocStyle First sentence should end with a period. 7351
 Warning javadoc JavadocMethod @return tag should be present and have description. 7354
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 7354
 Warning javadoc JavadocStyle First sentence should end with a period. 7373
 Warning javadoc JavadocMethod @return tag should be present and have description. 7376
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7376
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 7377
 Warning javadoc JavadocStyle First sentence should end with a period. 7396
 Warning javadoc JavadocMethod @return tag should be present and have description. 7399
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 7400
 Warning javadoc JavadocStyle First sentence should end with a period. 7415
 Warning javadoc JavadocMethod @return tag should be present and have description. 7418
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7418
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 7419
 Warning javadoc JavadocStyle First sentence should end with a period. 7434
 Warning javadoc JavadocMethod @return tag should be present and have description. 7437
 Warning javadoc JavadocMethod Expected @param tag for 'values'. 7438
 Warning javadoc JavadocStyle First sentence should end with a period. 7453
 Warning javadoc JavadocMethod @return tag should be present and have description. 7456
 Warning javadoc JavadocStyle First sentence should end with a period. 7471
 Warning javadoc JavadocMethod @return tag should be present and have description. 7474
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7474
 Warning javadoc JavadocStyle First sentence should end with a period. 7489
 Warning javadoc JavadocMethod @return tag should be present and have description. 7492
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7492
 Warning javadoc JavadocStyle First sentence should end with a period. 7497
 Warning javadoc JavadocStyle First sentence should end with a period. 7514
 Info sizes LineLength Line is longer than 128 characters (found 132). 7519
 Warning javadoc JavadocStyle First sentence should end with a period. 7531
 Warning javadoc JavadocMethod @return tag should be present and have description. 7534
 Warning javadoc JavadocStyle First sentence should end with a period. 7540
 Warning javadoc JavadocMethod @return tag should be present and have description. 7543
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7543
 Warning javadoc JavadocStyle First sentence should end with a period. 7549
 Warning javadoc JavadocMethod @return tag should be present and have description. 7552
 Info sizes LineLength Line is longer than 128 characters (found 129). 7560
 Warning javadoc JavadocVariable Missing a Javadoc comment. 7574
 Warning naming MemberName Name 'changesets_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 7574
 Warning javadoc JavadocVariable Missing a Javadoc comment. 7588
 Warning naming MemberName Name 'changesetsBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 7590
 Warning javadoc JavadocStyle First sentence should end with a period. 7592
 Warning javadoc JavadocStyle First sentence should end with a period. 7608
 Warning javadoc JavadocStyle First sentence should end with a period. 7624
 Warning javadoc JavadocStyle First sentence should end with a period. 7640
 Warning javadoc JavadocMethod @return tag should be present and have description. 7643
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7643
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 7644
 Warning javadoc JavadocStyle First sentence should end with a period. 7663
 Warning javadoc JavadocMethod @return tag should be present and have description. 7666
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7666
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 7667
 Warning javadoc JavadocStyle First sentence should end with a period. 7682
 Warning javadoc JavadocMethod @return tag should be present and have description. 7685
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 7685
 Warning javadoc JavadocStyle First sentence should end with a period. 7704
 Warning javadoc JavadocMethod @return tag should be present and have description. 7707
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7707
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 7708
 Warning javadoc JavadocStyle First sentence should end with a period. 7727
 Warning javadoc JavadocMethod @return tag should be present and have description. 7730
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 7731
 Warning javadoc JavadocStyle First sentence should end with a period. 7746
 Warning javadoc JavadocMethod @return tag should be present and have description. 7749
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7749
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 7750
 Warning javadoc JavadocStyle First sentence should end with a period. 7765
 Warning javadoc JavadocMethod @return tag should be present and have description. 7768
 Warning javadoc JavadocMethod Expected @param tag for 'values'. 7769
 Warning javadoc JavadocStyle First sentence should end with a period. 7784
 Warning javadoc JavadocMethod @return tag should be present and have description. 7787
 Warning javadoc JavadocStyle First sentence should end with a period. 7802
 Warning javadoc JavadocMethod @return tag should be present and have description. 7805
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7805
 Warning javadoc JavadocStyle First sentence should end with a period. 7820
 Warning javadoc JavadocMethod @return tag should be present and have description. 7823
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7824
 Warning javadoc JavadocStyle First sentence should end with a period. 7829
 Warning javadoc JavadocStyle First sentence should end with a period. 7846
 Info sizes LineLength Line is longer than 128 characters (found 134). 7851
 Warning javadoc JavadocStyle First sentence should end with a period. 7863
 Warning javadoc JavadocMethod @return tag should be present and have description. 7866
 Warning javadoc JavadocStyle First sentence should end with a period. 7872
 Warning javadoc JavadocMethod @return tag should be present and have description. 7875
 Warning javadoc JavadocMethod Expected @param tag for 'index'. 7876
 Warning javadoc JavadocStyle First sentence should end with a period. 7882
 Warning javadoc JavadocMethod @return tag should be present and have description. 7885
 Info sizes LineLength Line is longer than 128 characters (found 131). 7893
 Warning javadoc JavadocVariable Missing a Javadoc comment. 7911
 Warning javadoc JavadocVariable Missing a Javadoc comment. 7922
 Warning javadoc JavadocStyle First sentence should end with a period. 7976
 Warning javadoc JavadocStyle First sentence should end with a period. 7982
 Warning javadoc JavadocStyle First sentence should end with a period. 7988
 Warning modifier RedundantModifier Redundant 'final' modifier. 8029
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8042
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8044
 Warning naming MemberName Name 's_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8045
 Warning javadoc JavadocStyle First sentence should end with a period. 8048
 Warning javadoc JavadocStyle First sentence should end with a period. 8058
 Warning javadoc JavadocStyle First sentence should end with a period. 8068
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8079
 Warning modifier RedundantModifier Redundant 'final' modifier. 8082
 Warning blocks NeedBraces 'if' construct must use '{}'s. 8085
 Warning blocks NeedBraces 'if' construct must use '{}'s. 8087
 Warning blocks NeedBraces 'if' construct must use '{}'s. 8108
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 8112
 Warning blocks NeedBraces 'if' construct must use '{}'s. 8140
 Warning blocks NeedBraces 'if' construct must use '{}'s. 8142
 Warning modifier RedundantModifier Redundant 'final' modifier. 8287
 Info sizes LineLength Line is longer than 128 characters (found 132). 8295
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 8360
 Warning blocks NeedBraces 'if' construct must use '{}'s. 8384
 Warning modifier RedundantModifier Redundant 'final' modifier. 8407
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8460
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8460
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8462
 Warning naming MemberName Name 's_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8462
 Warning javadoc JavadocStyle First sentence should end with a period. 8474
 Warning javadoc JavadocStyle First sentence should end with a period. 8485
 Warning javadoc JavadocStyle First sentence should end with a period. 8495
 Warning javadoc JavadocStyle First sentence should end with a period. 8506
 Warning javadoc JavadocStyle First sentence should end with a period. 8525
 Warning javadoc JavadocStyle First sentence should end with a period. 8543
 Warning javadoc JavadocStyle First sentence should end with a period. 8557
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8573
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8584
 Warning javadoc JavadocStyle First sentence should end with a period. 8638
 Warning javadoc JavadocStyle First sentence should end with a period. 8644
 Warning javadoc JavadocStyle First sentence should end with a period. 8650
 Warning javadoc JavadocStyle First sentence should end with a period. 8656
 Warning javadoc JavadocStyle First sentence should end with a period. 8662
 Warning javadoc JavadocStyle First sentence should end with a period. 8668
 Warning javadoc JavadocStyle First sentence should end with a period. 8674
 Warning javadoc JavadocStyle First sentence should end with a period. 8680
 Warning javadoc JavadocStyle First sentence should end with a period. 8686
 Warning javadoc JavadocStyle First sentence should end with a period. 8696
 Warning modifier RedundantModifier Redundant 'final' modifier. 8771
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8784
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8784
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8786
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8788
 Warning naming MemberName Name 'version_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8788
 Warning javadoc JavadocStyle First sentence should end with a period. 8790
 Warning javadoc JavadocStyle First sentence should end with a period. 8800
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8810
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8812
 Warning naming MemberName Name 'timestamp_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8812
 Warning javadoc JavadocStyle First sentence should end with a period. 8814
 Warning javadoc JavadocStyle First sentence should end with a period. 8824
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8834
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8836
 Warning naming MemberName Name 'changeset_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8836
 Warning javadoc JavadocStyle First sentence should end with a period. 8838
 Warning javadoc JavadocStyle First sentence should end with a period. 8848
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8858
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8860
 Warning naming MemberName Name 'uid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8860
 Warning javadoc JavadocStyle First sentence should end with a period. 8862
 Warning javadoc JavadocStyle First sentence should end with a period. 8872
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8882
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8884
 Warning naming MemberName Name 'userSid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8884
 Warning javadoc JavadocStyle First sentence should end with a period. 8886
 Warning javadoc JavadocStyle First sentence should end with a period. 8900
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8914
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8916
 Warning naming MemberName Name 'visible_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 8916
 Warning javadoc JavadocVariable Missing a Javadoc comment. 8960
 Warning modifier RedundantModifier Redundant 'final' modifier. 8963
 Warning blocks NeedBraces 'if' construct must use '{}'s. 8966
 Warning blocks NeedBraces 'if' construct must use '{}'s. 8968
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9009
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9056
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9060
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9063
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9067
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9070
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9074
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9077
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9081
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9084
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9088
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9091
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9095
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9098
 Warning modifier RedundantModifier Redundant 'final' modifier. 9264
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 9341
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 9342
 Warning blocks NeedBraces 'if' construct must use '{}'s. 9392
 Warning modifier RedundantModifier Redundant 'final' modifier. 9424
 Warning javadoc JavadocVariable Missing a Javadoc comment. 9506
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9506
 Warning javadoc JavadocVariable Missing a Javadoc comment. 9508
 Warning naming MemberName Name 'version_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9508
 Warning javadoc JavadocStyle First sentence should end with a period. 9510
 Warning javadoc JavadocStyle First sentence should end with a period. 9520
 Warning javadoc JavadocStyle First sentence should end with a period. 9530
 Warning javadoc JavadocStyle First sentence should end with a period. 9544
 Warning javadoc JavadocVariable Missing a Javadoc comment. 9556
 Warning naming MemberName Name 'timestamp_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9556
 Warning javadoc JavadocStyle First sentence should end with a period. 9558
 Warning javadoc JavadocStyle First sentence should end with a period. 9568
 Warning javadoc JavadocStyle First sentence should end with a period. 9578
 Warning javadoc JavadocStyle First sentence should end with a period. 9592
 Warning javadoc JavadocVariable Missing a Javadoc comment. 9604
 Warning naming MemberName Name 'changeset_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9604
 Warning javadoc JavadocStyle First sentence should end with a period. 9606
 Warning javadoc JavadocStyle First sentence should end with a period. 9616
 Warning javadoc JavadocStyle First sentence should end with a period. 9626
 Warning javadoc JavadocStyle First sentence should end with a period. 9640
 Warning javadoc JavadocVariable Missing a Javadoc comment. 9652
 Warning naming MemberName Name 'uid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9652
 Warning javadoc JavadocStyle First sentence should end with a period. 9654
 Warning javadoc JavadocStyle First sentence should end with a period. 9664
 Warning javadoc JavadocStyle First sentence should end with a period. 9674
 Warning javadoc JavadocStyle First sentence should end with a period. 9688
 Warning javadoc JavadocVariable Missing a Javadoc comment. 9700
 Warning naming MemberName Name 'userSid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9700
 Warning javadoc JavadocStyle First sentence should end with a period. 9702
 Warning javadoc JavadocStyle First sentence should end with a period. 9716
 Warning javadoc JavadocStyle First sentence should end with a period. 9730
 Warning javadoc JavadocStyle First sentence should end with a period. 9748
 Warning javadoc JavadocVariable Missing a Javadoc comment. 9764
 Warning naming MemberName Name 'visible_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 9764
 Warning javadoc JavadocVariable Missing a Javadoc comment. 9860
 Warning javadoc JavadocVariable Missing a Javadoc comment. 9871
 Warning javadoc JavadocStyle First sentence should end with a period. 9924
 Warning javadoc JavadocStyle First sentence should end with a period. 9930
 Warning javadoc JavadocStyle First sentence should end with a period. 9936
 Warning javadoc JavadocStyle First sentence should end with a period. 9943
 Warning javadoc JavadocStyle First sentence should end with a period. 9953
 Warning javadoc JavadocStyle First sentence should end with a period. 9963
 Warning javadoc JavadocStyle First sentence should end with a period. 9974
 Warning javadoc JavadocStyle First sentence should end with a period. 9984
 Warning javadoc JavadocStyle First sentence should end with a period. 9994
 Warning javadoc JavadocStyle First sentence should end with a period. 10005
 Warning javadoc JavadocStyle First sentence should end with a period. 10015
 Warning javadoc JavadocStyle First sentence should end with a period. 10025
 Warning modifier RedundantModifier Redundant 'final' modifier. 10155
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10168
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10170
 Warning naming MemberName Name 'version_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 10171
 Warning javadoc JavadocStyle First sentence should end with a period. 10173
 Warning javadoc JavadocStyle First sentence should end with a period. 10183
 Warning javadoc JavadocStyle First sentence should end with a period. 10193
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10204
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10206
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10208
 Warning naming MemberName Name 'timestamp_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 10209
 Warning javadoc JavadocStyle First sentence should end with a period. 10211
 Warning javadoc JavadocStyle First sentence should end with a period. 10225
 Warning javadoc JavadocStyle First sentence should end with a period. 10239
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10254
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10256
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10258
 Warning naming MemberName Name 'changeset_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 10259
 Warning javadoc JavadocStyle First sentence should end with a period. 10261
 Warning javadoc JavadocStyle First sentence should end with a period. 10275
 Warning javadoc JavadocStyle First sentence should end with a period. 10289
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10304
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10306
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10308
 Warning naming MemberName Name 'uid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 10309
 Warning javadoc JavadocStyle First sentence should end with a period. 10311
 Warning javadoc JavadocStyle First sentence should end with a period. 10325
 Warning javadoc JavadocStyle First sentence should end with a period. 10339
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10354
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10356
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10358
 Warning naming MemberName Name 'userSid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 10359
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10404
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10406
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10408
 Warning naming MemberName Name 'visible_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 10409
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10475
 Warning javadoc JavadocVariable Missing a Javadoc comment. 10477
 Warning modifier RedundantModifier Redundant 'final' modifier. 10480
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10483
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10485
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10557
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 10561
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 10575
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 10589
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 10603
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 10617
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 10631
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10661
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10663
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10665
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10667
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10669
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10671
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10673
 Warning modifier RedundantModifier Redundant 'final' modifier. 10840
 Info sizes LineLength Line is longer than 128 characters (found 130). 10848
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 10918
 Warning blocks NeedBraces 'if' construct must use '{}'s. 10967
 Warning modifier RedundantModifier Redundant 'final' modifier. 11065
 Info sizes MethodLength Method mergeFrom length is 152 lines (max allowed is 150). 11070
 Warning javadoc JavadocVariable Missing a Javadoc comment. 11226
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 11226
 Warning javadoc JavadocVariable Missing a Javadoc comment. 11228
 Warning naming MemberName Name 'version_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 11228
 Warning javadoc JavadocStyle First sentence should end with a period. 11239
 Warning javadoc JavadocStyle First sentence should end with a period. 11250
 Warning javadoc JavadocStyle First sentence should end with a period. 11260
 Warning javadoc JavadocStyle First sentence should end with a period. 11271
 Warning javadoc JavadocStyle First sentence should end with a period. 11287
 Warning javadoc JavadocStyle First sentence should end with a period. 11302
 Warning javadoc JavadocStyle First sentence should end with a period. 11316
 Warning javadoc JavadocVariable Missing a Javadoc comment. 11328
 Warning naming MemberName Name 'timestamp_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 11328
 Warning javadoc JavadocStyle First sentence should end with a period. 11339
 Warning javadoc JavadocStyle First sentence should end with a period. 11354
 Warning javadoc JavadocStyle First sentence should end with a period. 11368
 Warning javadoc JavadocStyle First sentence should end with a period. 11383
 Warning javadoc JavadocStyle First sentence should end with a period. 11403
 Warning javadoc JavadocStyle First sentence should end with a period. 11422
 Warning javadoc JavadocStyle First sentence should end with a period. 11440
 Warning javadoc JavadocVariable Missing a Javadoc comment. 11456
 Warning naming MemberName Name 'changeset_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 11456
 Warning javadoc JavadocStyle First sentence should end with a period. 11467
 Warning javadoc JavadocStyle First sentence should end with a period. 11482
 Warning javadoc JavadocStyle First sentence should end with a period. 11496
 Warning javadoc JavadocStyle First sentence should end with a period. 11511
 Warning javadoc JavadocStyle First sentence should end with a period. 11531
 Warning javadoc JavadocStyle First sentence should end with a period. 11550
 Warning javadoc JavadocStyle First sentence should end with a period. 11568
 Warning javadoc JavadocVariable Missing a Javadoc comment. 11584
 Warning naming MemberName Name 'uid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 11584
 Warning javadoc JavadocStyle First sentence should end with a period. 11595
 Warning javadoc JavadocStyle First sentence should end with a period. 11610
 Warning javadoc JavadocStyle First sentence should end with a period. 11624
 Warning javadoc JavadocStyle First sentence should end with a period. 11639
 Warning javadoc JavadocStyle First sentence should end with a period. 11659
 Warning javadoc JavadocStyle First sentence should end with a period. 11678
 Warning javadoc JavadocStyle First sentence should end with a period. 11696
 Warning javadoc JavadocVariable Missing a Javadoc comment. 11712
 Warning naming MemberName Name 'userSid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 11712
 Warning javadoc JavadocVariable Missing a Javadoc comment. 11840
 Warning naming MemberName Name 'visible_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 11840
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12030
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12041
 Warning javadoc JavadocStyle First sentence should end with a period. 12094
 Warning javadoc JavadocStyle First sentence should end with a period. 12100
 Warning modifier RedundantModifier Redundant 'final' modifier. 12136
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12149
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 12149
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12151
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12153
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 12153
 Warning javadoc JavadocStyle First sentence should end with a period. 12155
 Warning javadoc JavadocStyle First sentence should end with a period. 12165
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12175
 Warning modifier RedundantModifier Redundant 'final' modifier. 12178
 Warning blocks NeedBraces 'if' construct must use '{}'s. 12181
 Warning blocks NeedBraces 'if' construct must use '{}'s. 12183
 Warning blocks NeedBraces 'if' construct must use '{}'s. 12209
 Warning blocks NeedBraces 'if' construct must use '{}'s. 12236
 Warning blocks NeedBraces 'if' construct must use '{}'s. 12240
 Warning blocks NeedBraces 'if' construct must use '{}'s. 12243
 Warning modifier RedundantModifier Redundant 'final' modifier. 12385
 Info sizes LineLength Line is longer than 128 characters (found 130). 12393
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 12458
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 12459
 Warning blocks NeedBraces 'if' construct must use '{}'s. 12484
 Warning modifier RedundantModifier Redundant 'final' modifier. 12496
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12552
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 12552
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12554
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 12554
 Warning javadoc JavadocStyle First sentence should end with a period. 12556
 Warning javadoc JavadocStyle First sentence should end with a period. 12566
 Warning javadoc JavadocStyle First sentence should end with a period. 12576
 Warning javadoc JavadocStyle First sentence should end with a period. 12590
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12606
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12617
 Warning javadoc JavadocStyle First sentence should end with a period. 12670
 Warning javadoc JavadocStyle First sentence should end with a period. 12676
 Warning javadoc JavadocStyle First sentence should end with a period. 12744
 Warning javadoc JavadocStyle First sentence should end with a period. 12754
 Warning javadoc JavadocStyle First sentence should end with a period. 12764
 Warning javadoc JavadocMethod @return tag should be present and have description. 12771
 Warning javadoc JavadocStyle First sentence should end with a period. 12773
 Warning javadoc JavadocStyle First sentence should end with a period. 12779
 Warning javadoc JavadocStyle First sentence should end with a period. 12785
 Warning javadoc JavadocStyle First sentence should end with a period. 12791
 Warning javadoc JavadocStyle First sentence should end with a period. 12798
 Warning modifier RedundantModifier Redundant 'final' modifier. 12825
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12838
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 12838
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12840
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12842
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 12842
 Warning javadoc JavadocStyle First sentence should end with a period. 12844
 Warning javadoc JavadocStyle First sentence should end with a period. 12854
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12864
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12866
 Warning naming MemberName Name 'keys_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 12867
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12912
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12914
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12916
 Warning naming MemberName Name 'vals_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 12917
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12962
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12964
 Warning javadoc JavadocVariable Missing a Javadoc comment. 12966
 Warning naming MemberName Name 'info_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 12966
 Warning javadoc JavadocStyle First sentence should end with a period. 12968
 Warning javadoc JavadocStyle First sentence should end with a period. 12982
 Warning javadoc JavadocStyle First sentence should end with a period. 12997
 Warning javadoc JavadocMethod @return tag should be present and have description. 13004
 Warning javadoc JavadocVariable Missing a Javadoc comment. 13011
 Warning javadoc JavadocVariable Missing a Javadoc comment. 13013
 Warning naming MemberName Name 'lat_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 13013
 Warning javadoc JavadocStyle First sentence should end with a period. 13015
 Warning javadoc JavadocStyle First sentence should end with a period. 13025
 Warning javadoc JavadocVariable Missing a Javadoc comment. 13035
 Warning javadoc JavadocVariable Missing a Javadoc comment. 13037
 Warning naming MemberName Name 'lon_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 13037
 Warning javadoc JavadocStyle First sentence should end with a period. 13039
 Warning javadoc JavadocStyle First sentence should end with a period. 13049
 Warning javadoc JavadocVariable Missing a Javadoc comment. 13059
 Warning modifier RedundantModifier Redundant 'final' modifier. 13062
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13065
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13067
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13134
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 13142
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 13156
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13201
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13205
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13208
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13210
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13212
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13216
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13219
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13223
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13226
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13230
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13233
 Warning javadoc JavadocStyle First sentence should end with a period. 13388
 Warning modifier RedundantModifier Redundant 'final' modifier. 13395
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 13485
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 13486
 Warning blocks NeedBraces 'if' construct must use '{}'s. 13536
 Warning modifier RedundantModifier Redundant 'final' modifier. 13590
 Warning javadoc JavadocVariable Missing a Javadoc comment. 13710
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 13710
 Warning javadoc JavadocVariable Missing a Javadoc comment. 13712
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 13712
 Warning javadoc JavadocStyle First sentence should end with a period. 13714
 Warning javadoc JavadocStyle First sentence should end with a period. 13724
 Warning javadoc JavadocStyle First sentence should end with a period. 13734
 Warning javadoc JavadocStyle First sentence should end with a period. 13748
 Warning javadoc JavadocVariable Missing a Javadoc comment. 13760
 Warning naming MemberName Name 'keys_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 13760
 Warning javadoc JavadocVariable Missing a Javadoc comment. 13888
 Warning naming MemberName Name 'vals_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 13888
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14016
 Warning naming MemberName Name 'info_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14016
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14018
 Warning naming MemberName Name 'infoBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14020
 Warning javadoc JavadocStyle First sentence should end with a period. 14022
 Warning javadoc JavadocStyle First sentence should end with a period. 14036
 Warning javadoc JavadocStyle First sentence should end with a period. 14058
 Warning javadoc JavadocMethod @return tag should be present and have description. 14065
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 14065
 Warning javadoc JavadocStyle First sentence should end with a period. 14084
 Warning javadoc JavadocMethod @return tag should be present and have description. 14091
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 14091
 Warning javadoc JavadocStyle First sentence should end with a period. 14106
 Warning javadoc JavadocMethod @return tag should be present and have description. 14113
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 14113
 Warning javadoc JavadocStyle First sentence should end with a period. 14139
 Warning javadoc JavadocMethod @return tag should be present and have description. 14146
 Warning javadoc JavadocStyle First sentence should end with a period. 14159
 Warning javadoc JavadocMethod @return tag should be present and have description. 14166
 Warning javadoc JavadocStyle First sentence should end with a period. 14173
 Warning javadoc JavadocStyle First sentence should end with a period. 14194
 Warning javadoc JavadocMethod @return tag should be present and have description. 14201
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14217
 Warning naming MemberName Name 'lat_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14217
 Warning javadoc JavadocStyle First sentence should end with a period. 14219
 Warning javadoc JavadocStyle First sentence should end with a period. 14229
 Warning javadoc JavadocStyle First sentence should end with a period. 14239
 Warning javadoc JavadocStyle First sentence should end with a period. 14253
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14265
 Warning naming MemberName Name 'lon_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14265
 Warning javadoc JavadocStyle First sentence should end with a period. 14267
 Warning javadoc JavadocStyle First sentence should end with a period. 14277
 Warning javadoc JavadocStyle First sentence should end with a period. 14287
 Warning javadoc JavadocStyle First sentence should end with a period. 14301
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14317
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14328
 Warning javadoc JavadocStyle First sentence should end with a period. 14381
 Warning javadoc JavadocStyle First sentence should end with a period. 14391
 Warning javadoc JavadocStyle First sentence should end with a period. 14401
 Warning javadoc JavadocStyle First sentence should end with a period. 14412
 Warning javadoc JavadocStyle First sentence should end with a period. 14418
 Warning javadoc JavadocStyle First sentence should end with a period. 14424
 Warning javadoc JavadocMethod @return tag should be present and have description. 14427
 Warning javadoc JavadocStyle First sentence should end with a period. 14429
 Warning javadoc JavadocStyle First sentence should end with a period. 14439
 Warning javadoc JavadocStyle First sentence should end with a period. 14449
 Warning javadoc JavadocStyle First sentence should end with a period. 14460
 Warning javadoc JavadocStyle First sentence should end with a period. 14470
 Warning javadoc JavadocStyle First sentence should end with a period. 14480
 Warning javadoc JavadocStyle First sentence should end with a period. 14523
 Warning modifier RedundantModifier Redundant 'final' modifier. 14552
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14565
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14565
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14567
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14569
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14570
 Warning javadoc JavadocStyle First sentence should end with a period. 14572
 Warning javadoc JavadocStyle First sentence should end with a period. 14586
 Warning javadoc JavadocStyle First sentence should end with a period. 14600
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14615
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14617
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14619
 Warning naming MemberName Name 'denseinfo_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14619
 Warning javadoc JavadocStyle First sentence should end with a period. 14621
 Warning javadoc JavadocStyle First sentence should end with a period. 14631
 Warning javadoc JavadocStyle First sentence should end with a period. 14642
 Warning javadoc JavadocMethod @return tag should be present and have description. 14645
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14652
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14654
 Warning naming MemberName Name 'lat_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14655
 Warning javadoc JavadocStyle First sentence should end with a period. 14657
 Warning javadoc JavadocStyle First sentence should end with a period. 14671
 Warning javadoc JavadocStyle First sentence should end with a period. 14685
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14700
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14702
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14704
 Warning naming MemberName Name 'lon_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14705
 Warning javadoc JavadocStyle First sentence should end with a period. 14707
 Warning javadoc JavadocStyle First sentence should end with a period. 14721
 Warning javadoc JavadocStyle First sentence should end with a period. 14735
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14750
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14752
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14754
 Warning naming MemberName Name 'keysVals_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 14755
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14800
 Warning javadoc JavadocVariable Missing a Javadoc comment. 14802
 Warning modifier RedundantModifier Redundant 'final' modifier. 14805
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14808
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14810
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14868
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 14872
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 14890
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 14904
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 14918
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14951
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14953
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14957
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14960
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14962
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14964
 Warning blocks NeedBraces 'if' construct must use '{}'s. 14966
 Warning javadoc JavadocStyle First sentence should end with a period. 15117
 Warning modifier RedundantModifier Redundant 'final' modifier. 15124
 Info sizes LineLength Line is longer than 128 characters (found 131). 15132
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 15214
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 15220
 Warning blocks NeedBraces 'if' construct must use '{}'s. 15260
 Warning modifier RedundantModifier Redundant 'final' modifier. 15332
 Warning javadoc JavadocVariable Missing a Javadoc comment. 15460
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 15460
 Warning javadoc JavadocVariable Missing a Javadoc comment. 15462
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 15462
 Warning javadoc JavadocStyle First sentence should end with a period. 15473
 Warning javadoc JavadocStyle First sentence should end with a period. 15488
 Warning javadoc JavadocStyle First sentence should end with a period. 15502
 Warning javadoc JavadocStyle First sentence should end with a period. 15517
 Warning javadoc JavadocStyle First sentence should end with a period. 15537
 Warning javadoc JavadocStyle First sentence should end with a period. 15556
 Warning javadoc JavadocStyle First sentence should end with a period. 15574
 Warning javadoc JavadocVariable Missing a Javadoc comment. 15590
 Warning naming MemberName Name 'denseinfo_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 15590
 Warning javadoc JavadocVariable Missing a Javadoc comment. 15592
 Warning naming MemberName Name 'denseinfoBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 15594
 Warning javadoc JavadocStyle First sentence should end with a period. 15596
 Warning javadoc JavadocStyle First sentence should end with a period. 15606
 Warning javadoc JavadocStyle First sentence should end with a period. 15625
 Warning javadoc JavadocMethod @return tag should be present and have description. 15628
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 15628
 Warning javadoc JavadocStyle First sentence should end with a period. 15647
 Warning javadoc JavadocMethod @return tag should be present and have description. 15650
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 15651
 Warning javadoc JavadocStyle First sentence should end with a period. 15666
 Warning javadoc JavadocMethod @return tag should be present and have description. 15669
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 15669
 Warning javadoc JavadocStyle First sentence should end with a period. 15696
 Warning javadoc JavadocMethod @return tag should be present and have description. 15699
 Warning javadoc JavadocStyle First sentence should end with a period. 15712
 Warning javadoc JavadocMethod @return tag should be present and have description. 15715
 Warning javadoc JavadocStyle First sentence should end with a period. 15722
 Warning javadoc JavadocStyle First sentence should end with a period. 15740
 Warning javadoc JavadocMethod @return tag should be present and have description. 15743
 Info sizes LineLength Line is longer than 128 characters (found 130). 15745
 Warning javadoc JavadocVariable Missing a Javadoc comment. 15759
 Warning naming MemberName Name 'lat_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 15759
 Warning javadoc JavadocStyle First sentence should end with a period. 15770
 Warning javadoc JavadocStyle First sentence should end with a period. 15785
 Warning javadoc JavadocStyle First sentence should end with a period. 15799
 Warning javadoc JavadocStyle First sentence should end with a period. 15814
 Warning javadoc JavadocStyle First sentence should end with a period. 15834
 Warning javadoc JavadocStyle First sentence should end with a period. 15853
 Warning javadoc JavadocStyle First sentence should end with a period. 15871
 Warning javadoc JavadocVariable Missing a Javadoc comment. 15887
 Warning naming MemberName Name 'lon_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 15887
 Warning javadoc JavadocStyle First sentence should end with a period. 15898
 Warning javadoc JavadocStyle First sentence should end with a period. 15913
 Warning javadoc JavadocStyle First sentence should end with a period. 15927
 Warning javadoc JavadocStyle First sentence should end with a period. 15942
 Warning javadoc JavadocStyle First sentence should end with a period. 15962
 Warning javadoc JavadocStyle First sentence should end with a period. 15981
 Warning javadoc JavadocStyle First sentence should end with a period. 15999
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16015
 Warning naming MemberName Name 'keysVals_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 16015
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16147
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16158
 Warning javadoc JavadocStyle First sentence should end with a period. 16212
 Warning javadoc JavadocStyle First sentence should end with a period. 16218
 Warning javadoc JavadocStyle First sentence should end with a period. 16255
 Warning javadoc JavadocStyle First sentence should end with a period. 16261
 Warning javadoc JavadocStyle First sentence should end with a period. 16267
 Warning javadoc JavadocStyle First sentence should end with a period. 16274
 Warning javadoc JavadocStyle First sentence should end with a period. 16280
 Warning javadoc JavadocStyle First sentence should end with a period. 16286
 Warning javadoc JavadocMethod @return tag should be present and have description. 16289
 Warning javadoc JavadocStyle First sentence should end with a period. 16291
 Warning javadoc JavadocStyle First sentence should end with a period. 16301
 Warning javadoc JavadocStyle First sentence should end with a period. 16311
 Warning javadoc JavadocStyle First sentence should end with a period. 16368
 Warning javadoc JavadocStyle First sentence should end with a period. 16378
 Warning javadoc JavadocStyle First sentence should end with a period. 16388
 Warning javadoc JavadocStyle First sentence should end with a period. 16400
 Warning modifier RedundantModifier Redundant 'final' modifier. 16430
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16443
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 16443
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16445
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16447
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 16447
 Warning javadoc JavadocStyle First sentence should end with a period. 16449
 Warning javadoc JavadocStyle First sentence should end with a period. 16459
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16469
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16471
 Warning naming MemberName Name 'keys_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 16472
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16517
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16519
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16521
 Warning naming MemberName Name 'vals_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 16522
 Warning javadoc JavadocStyle First sentence should end with a period. 16524
 Warning javadoc JavadocStyle First sentence should end with a period. 16534
 Warning javadoc JavadocStyle First sentence should end with a period. 16544
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16555
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16557
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16559
 Warning naming MemberName Name 'info_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 16559
 Warning javadoc JavadocStyle First sentence should end with a period. 16561
 Warning javadoc JavadocStyle First sentence should end with a period. 16571
 Warning javadoc JavadocStyle First sentence should end with a period. 16582
 Warning javadoc JavadocMethod @return tag should be present and have description. 16585
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16592
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16594
 Warning naming MemberName Name 'refs_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 16595
 Warning javadoc JavadocStyle First sentence should end with a period. 16597
 Warning javadoc JavadocStyle First sentence should end with a period. 16611
 Warning javadoc JavadocStyle First sentence should end with a period. 16625
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16640
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16642
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16644
 Warning naming MemberName Name 'lat_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 16645
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16705
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16707
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16709
 Warning naming MemberName Name 'lon_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 16710
 Warning javadoc JavadocStyle First sentence should end with a period. 16712
 Warning javadoc JavadocStyle First sentence should end with a period. 16726
 Warning javadoc JavadocStyle First sentence should end with a period. 16740
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16755
 Warning javadoc JavadocVariable Missing a Javadoc comment. 16757
 Warning modifier RedundantModifier Redundant 'final' modifier. 16760
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16763
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16765
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16841
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 16849
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 16863
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 16881
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 16895
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 16909
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16942
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16946
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16949
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16951
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16953
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16957
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16960
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16962
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16964
 Warning blocks NeedBraces 'if' construct must use '{}'s. 16966
 Warning javadoc JavadocStyle First sentence should end with a period. 17126
 Warning modifier RedundantModifier Redundant 'final' modifier. 17133
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 17224
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 17225
 Warning blocks NeedBraces 'if' construct must use '{}'s. 17280
 Warning modifier RedundantModifier Redundant 'final' modifier. 17371
 Warning javadoc JavadocVariable Missing a Javadoc comment. 17528
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 17528
 Warning javadoc JavadocVariable Missing a Javadoc comment. 17530
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 17530
 Warning javadoc JavadocStyle First sentence should end with a period. 17532
 Warning javadoc JavadocStyle First sentence should end with a period. 17542
 Warning javadoc JavadocStyle First sentence should end with a period. 17552
 Warning javadoc JavadocStyle First sentence should end with a period. 17566
 Warning javadoc JavadocVariable Missing a Javadoc comment. 17578
 Warning naming MemberName Name 'keys_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 17578
 Warning javadoc JavadocVariable Missing a Javadoc comment. 17706
 Warning naming MemberName Name 'vals_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 17706
 Warning javadoc JavadocStyle First sentence should end with a period. 17717
 Warning javadoc JavadocStyle First sentence should end with a period. 17728
 Warning javadoc JavadocStyle First sentence should end with a period. 17738
 Warning javadoc JavadocStyle First sentence should end with a period. 17749
 Warning javadoc JavadocStyle First sentence should end with a period. 17765
 Warning javadoc JavadocStyle First sentence should end with a period. 17780
 Warning javadoc JavadocStyle First sentence should end with a period. 17794
 Warning javadoc JavadocVariable Missing a Javadoc comment. 17806
 Warning naming MemberName Name 'info_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 17806
 Warning javadoc JavadocVariable Missing a Javadoc comment. 17808
 Warning naming MemberName Name 'infoBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 17810
 Warning javadoc JavadocStyle First sentence should end with a period. 17812
 Warning javadoc JavadocStyle First sentence should end with a period. 17822
 Warning javadoc JavadocStyle First sentence should end with a period. 17840
 Warning javadoc JavadocMethod @return tag should be present and have description. 17843
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 17843
 Warning javadoc JavadocStyle First sentence should end with a period. 17862
 Warning javadoc JavadocMethod @return tag should be present and have description. 17865
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 17865
 Warning javadoc JavadocStyle First sentence should end with a period. 17880
 Warning javadoc JavadocMethod @return tag should be present and have description. 17883
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 17883
 Warning javadoc JavadocStyle First sentence should end with a period. 17909
 Warning javadoc JavadocMethod @return tag should be present and have description. 17912
 Warning javadoc JavadocStyle First sentence should end with a period. 17925
 Warning javadoc JavadocMethod @return tag should be present and have description. 17928
 Warning javadoc JavadocStyle First sentence should end with a period. 17935
 Warning javadoc JavadocStyle First sentence should end with a period. 17952
 Warning javadoc JavadocMethod @return tag should be present and have description. 17955
 Warning javadoc JavadocVariable Missing a Javadoc comment. 17971
 Warning naming MemberName Name 'refs_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 17971
 Warning javadoc JavadocStyle First sentence should end with a period. 17982
 Warning javadoc JavadocStyle First sentence should end with a period. 17997
 Warning javadoc JavadocStyle First sentence should end with a period. 18011
 Warning javadoc JavadocStyle First sentence should end with a period. 18026
 Warning javadoc JavadocStyle First sentence should end with a period. 18046
 Warning javadoc JavadocStyle First sentence should end with a period. 18065
 Warning javadoc JavadocStyle First sentence should end with a period. 18083
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18099
 Warning naming MemberName Name 'lat_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 18099
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18262
 Warning naming MemberName Name 'lon_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 18262
 Warning javadoc JavadocStyle First sentence should end with a period. 18273
 Warning javadoc JavadocStyle First sentence should end with a period. 18288
 Warning javadoc JavadocStyle First sentence should end with a period. 18302
 Warning javadoc JavadocStyle First sentence should end with a period. 18317
 Warning javadoc JavadocStyle First sentence should end with a period. 18337
 Warning javadoc JavadocStyle First sentence should end with a period. 18356
 Warning javadoc JavadocStyle First sentence should end with a period. 18374
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18394
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18405
 Warning javadoc JavadocStyle First sentence should end with a period. 18458
 Warning javadoc JavadocStyle First sentence should end with a period. 18464
 Warning javadoc JavadocStyle First sentence should end with a period. 18501
 Warning javadoc JavadocStyle First sentence should end with a period. 18507
 Warning javadoc JavadocStyle First sentence should end with a period. 18513
 Warning javadoc JavadocStyle First sentence should end with a period. 18520
 Warning javadoc JavadocStyle First sentence should end with a period. 18526
 Warning javadoc JavadocStyle First sentence should end with a period. 18532
 Warning javadoc JavadocMethod @return tag should be present and have description. 18535
 Warning javadoc JavadocStyle First sentence should end with a period. 18537
 Warning javadoc JavadocStyle First sentence should end with a period. 18547
 Warning javadoc JavadocStyle First sentence should end with a period. 18557
 Warning javadoc JavadocStyle First sentence should end with a period. 18568
 Warning javadoc JavadocStyle First sentence should end with a period. 18578
 Warning javadoc JavadocStyle First sentence should end with a period. 18588
 Warning javadoc JavadocStyle First sentence should end with a period. 18599
 Warning javadoc JavadocStyle First sentence should end with a period. 18605
 Warning javadoc JavadocStyle First sentence should end with a period. 18611
 Warning javadoc JavadocStyle First sentence should end with a period. 18619
 Warning modifier RedundantModifier Redundant 'final' modifier. 18649
 Warning javadoc JavadocStyle First sentence should end with a period. 18662
 Warning javadoc JavadocStyle First sentence should end with a period. 18667
 Warning javadoc JavadocStyle First sentence should end with a period. 18671
 Warning javadoc JavadocStyle First sentence should end with a period. 18675
 Warning javadoc JavadocStyle First sentence should end with a period. 18687
 Warning javadoc JavadocStyle First sentence should end with a period. 18692
 Warning javadoc JavadocStyle First sentence should end with a period. 18697
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18743
 Warning naming ConstantName Name 'internalValueMap' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 18743
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18770
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18781
 Warning modifier RedundantModifier Redundant 'private' modifier. 18783
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18791
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 18791
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18793
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18795
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 18795
 Warning javadoc JavadocStyle First sentence should end with a period. 18797
 Warning javadoc JavadocStyle First sentence should end with a period. 18807
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18817
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18819
 Warning naming MemberName Name 'keys_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 18820
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18865
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18867
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18869
 Warning naming MemberName Name 'vals_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 18870
 Warning javadoc JavadocStyle First sentence should end with a period. 18872
 Warning javadoc JavadocStyle First sentence should end with a period. 18882
 Warning javadoc JavadocStyle First sentence should end with a period. 18892
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18903
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18905
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18907
 Warning naming MemberName Name 'info_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 18907
 Warning javadoc JavadocStyle First sentence should end with a period. 18909
 Warning javadoc JavadocStyle First sentence should end with a period. 18919
 Warning javadoc JavadocStyle First sentence should end with a period. 18930
 Warning javadoc JavadocMethod @return tag should be present and have description. 18933
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18940
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18942
 Warning naming MemberName Name 'rolesSid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 18943
 Warning javadoc JavadocStyle First sentence should end with a period. 18945
 Warning javadoc JavadocStyle First sentence should end with a period. 18959
 Warning javadoc JavadocStyle First sentence should end with a period. 18973
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18988
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18990
 Warning javadoc JavadocVariable Missing a Javadoc comment. 18992
 Warning naming MemberName Name 'memids_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 18993
 Warning javadoc JavadocStyle First sentence should end with a period. 18995
 Warning javadoc JavadocStyle First sentence should end with a period. 19009
 Warning javadoc JavadocStyle First sentence should end with a period. 19023
 Warning javadoc JavadocVariable Missing a Javadoc comment. 19038
 Warning javadoc JavadocVariable Missing a Javadoc comment. 19040
 Warning javadoc JavadocVariable Missing a Javadoc comment. 19042
 Warning naming MemberName Name 'types_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 19043
 Warning javadoc JavadocVariable Missing a Javadoc comment. 19045
 Warning naming ConstantName Name 'types_converter_' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 19046
 Warning javadoc JavadocStyle First sentence should end with a period. 19063
 Warning javadoc JavadocStyle First sentence should end with a period. 19074
 Warning javadoc JavadocStyle First sentence should end with a period. 19084
 Warning javadoc JavadocVariable Missing a Javadoc comment. 19095
 Warning javadoc JavadocVariable Missing a Javadoc comment. 19097
 Warning modifier RedundantModifier Redundant 'final' modifier. 19100
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19103
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19105
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19181
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 19189
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 19203
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 19221
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 19235
 Warning blocks AvoidNestedBlocks Avoid nested blocks. 19249
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19282
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19286
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19289
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19291
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19293
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19297
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19300
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19302
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19304
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19306
 Warning javadoc JavadocStyle First sentence should end with a period. 19467
 Warning modifier RedundantModifier Redundant 'final' modifier. 19474
 Info sizes LineLength Line is longer than 128 characters (found 129). 19482
 Warning naming LocalVariableName Name 'from_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 19565
 Warning naming LocalVariableName Name 'to_bitField0_' must match pattern '^([a-z][a-zA-Z0-9]*|_)$'. 19566
 Warning blocks NeedBraces 'if' construct must use '{}'s. 19621
 Warning modifier RedundantModifier Redundant 'final' modifier. 19712
 Info sizes MethodLength Method mergeFrom length is 165 lines (max allowed is 150). 19721
 Warning javadoc JavadocVariable Missing a Javadoc comment. 19890
 Warning naming MemberName Name 'bitField0_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 19890
 Warning javadoc JavadocVariable Missing a Javadoc comment. 19892
 Warning naming MemberName Name 'id_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 19892
 Warning javadoc JavadocStyle First sentence should end with a period. 19894
 Warning javadoc JavadocStyle First sentence should end with a period. 19904
 Warning javadoc JavadocStyle First sentence should end with a period. 19914
 Warning javadoc JavadocStyle First sentence should end with a period. 19928
 Warning javadoc JavadocVariable Missing a Javadoc comment. 19940
 Warning naming MemberName Name 'keys_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 19940
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20068
 Warning naming MemberName Name 'vals_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 20068
 Warning javadoc JavadocStyle First sentence should end with a period. 20079
 Warning javadoc JavadocStyle First sentence should end with a period. 20090
 Warning javadoc JavadocStyle First sentence should end with a period. 20100
 Warning javadoc JavadocStyle First sentence should end with a period. 20111
 Warning javadoc JavadocStyle First sentence should end with a period. 20127
 Warning javadoc JavadocStyle First sentence should end with a period. 20142
 Warning javadoc JavadocStyle First sentence should end with a period. 20156
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20168
 Warning naming MemberName Name 'info_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 20168
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20170
 Warning naming MemberName Name 'infoBuilder_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 20172
 Warning javadoc JavadocStyle First sentence should end with a period. 20174
 Warning javadoc JavadocStyle First sentence should end with a period. 20184
 Warning javadoc JavadocStyle First sentence should end with a period. 20202
 Warning javadoc JavadocMethod @return tag should be present and have description. 20205
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 20205
 Warning javadoc JavadocStyle First sentence should end with a period. 20224
 Warning javadoc JavadocMethod @return tag should be present and have description. 20227
 Warning javadoc JavadocMethod Expected @param tag for 'builderForValue'. 20227
 Warning javadoc JavadocStyle First sentence should end with a period. 20242
 Warning javadoc JavadocMethod @return tag should be present and have description. 20245
 Warning javadoc JavadocMethod Expected @param tag for 'value'. 20245
 Warning javadoc JavadocStyle First sentence should end with a period. 20271
 Warning javadoc JavadocMethod @return tag should be present and have description. 20274
 Warning javadoc JavadocStyle First sentence should end with a period. 20287
 Warning javadoc JavadocMethod @return tag should be present and have description. 20290
 Warning javadoc JavadocStyle First sentence should end with a period. 20297
 Warning javadoc JavadocStyle First sentence should end with a period. 20314
 Warning javadoc JavadocMethod @return tag should be present and have description. 20317
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20333
 Warning naming MemberName Name 'rolesSid_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 20333
 Warning javadoc JavadocStyle First sentence should end with a period. 20344
 Warning javadoc JavadocStyle First sentence should end with a period. 20359
 Warning javadoc JavadocStyle First sentence should end with a period. 20373
 Warning javadoc JavadocStyle First sentence should end with a period. 20388
 Warning javadoc JavadocStyle First sentence should end with a period. 20408
 Warning javadoc JavadocStyle First sentence should end with a period. 20427
 Warning javadoc JavadocStyle First sentence should end with a period. 20445
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20461
 Warning naming MemberName Name 'memids_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 20461
 Warning javadoc JavadocStyle First sentence should end with a period. 20472
 Warning javadoc JavadocStyle First sentence should end with a period. 20487
 Warning javadoc JavadocStyle First sentence should end with a period. 20501
 Warning javadoc JavadocStyle First sentence should end with a period. 20516
 Warning javadoc JavadocStyle First sentence should end with a period. 20536
 Warning javadoc JavadocStyle First sentence should end with a period. 20555
 Warning javadoc JavadocStyle First sentence should end with a period. 20573
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20589
 Warning naming MemberName Name 'types_' must match pattern '^[a-z][a-zA-Z0-9]*$'. 20589
 Warning javadoc JavadocStyle First sentence should end with a period. 20600
 Warning javadoc JavadocStyle First sentence should end with a period. 20612
 Warning javadoc JavadocStyle First sentence should end with a period. 20622
 Warning javadoc JavadocStyle First sentence should end with a period. 20633
 Warning javadoc JavadocStyle First sentence should end with a period. 20652
 Warning javadoc JavadocStyle First sentence should end with a period. 20669
 Warning javadoc JavadocStyle First sentence should end with a period. 20686
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20702
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20713
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20761
 Warning naming ConstantName Name 'internal_static_OSMPBF_HeaderBlock_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20761
 Info sizes LineLength Line is longer than 128 characters (found 135). 20763
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20763
 Warning naming ConstantName Name 'internal_static_OSMPBF_HeaderBlock_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20763
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20765
 Warning naming ConstantName Name 'internal_static_OSMPBF_HeaderBBox_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20765
 Info sizes LineLength Line is longer than 128 characters (found 134). 20767
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20767
 Warning naming ConstantName Name 'internal_static_OSMPBF_HeaderBBox_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20767
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20769
 Warning naming ConstantName Name 'internal_static_OSMPBF_PrimitiveBlock_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20769
 Info sizes LineLength Line is longer than 128 characters (found 138). 20771
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20771
 Warning naming ConstantName Name 'internal_static_OSMPBF_PrimitiveBlock_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20771
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20773
 Warning naming ConstantName Name 'internal_static_OSMPBF_PrimitiveGroup_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20773
 Info sizes LineLength Line is longer than 128 characters (found 138). 20775
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20775
 Warning naming ConstantName Name 'internal_static_OSMPBF_PrimitiveGroup_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20775
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20777
 Warning naming ConstantName Name 'internal_static_OSMPBF_StringTable_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20777
 Info sizes LineLength Line is longer than 128 characters (found 135). 20779
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20779
 Warning naming ConstantName Name 'internal_static_OSMPBF_StringTable_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20779
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20781
 Warning naming ConstantName Name 'internal_static_OSMPBF_Info_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20781
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20783
 Warning naming ConstantName Name 'internal_static_OSMPBF_Info_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20783
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20785
 Warning naming ConstantName Name 'internal_static_OSMPBF_DenseInfo_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20785
 Info sizes LineLength Line is longer than 128 characters (found 133). 20787
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20787
 Warning naming ConstantName Name 'internal_static_OSMPBF_DenseInfo_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20787
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20789
 Warning naming ConstantName Name 'internal_static_OSMPBF_ChangeSet_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20789
 Info sizes LineLength Line is longer than 128 characters (found 133). 20791
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20791
 Warning naming ConstantName Name 'internal_static_OSMPBF_ChangeSet_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20791
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20793
 Warning naming ConstantName Name 'internal_static_OSMPBF_Node_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20793
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20795
 Warning naming ConstantName Name 'internal_static_OSMPBF_Node_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20795
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20797
 Warning naming ConstantName Name 'internal_static_OSMPBF_DenseNodes_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20797
 Info sizes LineLength Line is longer than 128 characters (found 134). 20799
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20799
 Warning naming ConstantName Name 'internal_static_OSMPBF_DenseNodes_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20799
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20801
 Warning naming ConstantName Name 'internal_static_OSMPBF_Way_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20801
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20803
 Warning naming ConstantName Name 'internal_static_OSMPBF_Way_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20803
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20805
 Warning naming ConstantName Name 'internal_static_OSMPBF_Relation_descriptor' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20805
 Info sizes LineLength Line is longer than 128 characters (found 132). 20807
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20807
 Warning naming ConstantName Name 'internal_static_OSMPBF_Relation_fieldAccessorTable' must match pattern '^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$'. 20807
 Warning javadoc JavadocVariable Missing a Javadoc comment. 20814
 Info sizes LineLength Line is longer than 128 characters (found 130). 20852
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20866
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20869
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20873
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20877
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20880
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20884
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20888
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20891
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20894
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20898
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20902
 Warning whitespace WhitespaceAfter ',' is not followed by whitespace. 20906