Checkstyle Results

The following document contains the results of Checkstyle 10.12.0 with checkstyle.xml ruleset.

Summary

Files  Info  Warnings  Errors
83 0 2716 0

Files

File  I  W  E
org/csveed/annotations/CsvCell.java 0 3 0
org/csveed/annotations/CsvConverter.java 0 2 0
org/csveed/annotations/CsvDate.java 0 1 0
org/csveed/annotations/CsvFile.java 0 13 0
org/csveed/annotations/CsvLocalizedNumber.java 0 3 0
org/csveed/api/CsvClient.java 0 37 0
org/csveed/api/CsvClientImpl.java 0 193 0
org/csveed/api/Header.java 0 4 0
org/csveed/api/Row.java 0 8 0
org/csveed/bean/AbstractMapper.java 0 62 0
org/csveed/bean/BeanInstructions.java 0 29 0
org/csveed/bean/BeanInstructionsImpl.java 0 149 0
org/csveed/bean/BeanParser.java 0 73 0
org/csveed/bean/BeanProperties.java 0 129 0
org/csveed/bean/BeanProperty.java 0 72 0
org/csveed/bean/BeanReader.java 0 8 0
org/csveed/bean/BeanReaderImpl.java 0 90 0
org/csveed/bean/BeanWriter.java 0 5 0
org/csveed/bean/BeanWriterImpl.java 0 48 0
org/csveed/bean/ColumnIndexMapper.java 0 15 0
org/csveed/bean/ColumnNameMapper.java 0 19 0
org/csveed/bean/DynamicColumn.java 0 31 0
org/csveed/bean/conversion/AbstractConverter.java 0 10 0
org/csveed/bean/conversion/BeanPropertyConversionException.java 0 4 0
org/csveed/bean/conversion/BeanWrapper.java 0 41 0
org/csveed/bean/conversion/ByteArrayConverter.java 0 9 0
org/csveed/bean/conversion/CharArrayConverter.java 0 9 0
org/csveed/bean/conversion/CharacterConverter.java 0 29 0
org/csveed/bean/conversion/CharsetConverter.java 0 12 0
org/csveed/bean/conversion/ConversionException.java 0 12 0
org/csveed/bean/conversion/ConversionUtil.java 0 35 0
org/csveed/bean/conversion/Converter.java 0 4 0
org/csveed/bean/conversion/CurrencyConverter.java 0 9 0
org/csveed/bean/conversion/CustomBooleanConverter.java 0 52 0
org/csveed/bean/conversion/CustomNumberConverter.java 0 39 0
org/csveed/bean/conversion/DateConverter.java 0 31 0
org/csveed/bean/conversion/DefaultConverters.java 0 37 0
org/csveed/bean/conversion/EasyAbstractConverter.java 0 6 0
org/csveed/bean/conversion/EnumConverter.java 0 11 0
org/csveed/bean/conversion/NoConverterFoundException.java 0 4 0
org/csveed/bean/conversion/NumberUtils.java 0 127 0
org/csveed/bean/conversion/PatternConverter.java 0 14 0
org/csveed/bean/conversion/StringConverter.java 0 9 0
org/csveed/bean/conversion/TimeZoneConverter.java 0 9 0
org/csveed/bean/conversion/package-info.java 0 4 0
org/csveed/common/Column.java 0 80 0
org/csveed/common/ColumnExcel.java 0 13 0
org/csveed/common/ColumnIndexKey.java 0 25 0
org/csveed/common/ColumnKey.java 0 7 0
org/csveed/common/ColumnNameKey.java 0 25 0
org/csveed/report/AbstractCsvError.java 0 12 0
org/csveed/report/CsvError.java 0 4 0
org/csveed/report/CsvException.java 0 27 0
org/csveed/report/GeneralError.java 0 12 0
org/csveed/report/RowError.java 0 23 0
org/csveed/report/RowPart.java 0 12 0
org/csveed/report/RowReport.java 0 78 0
org/csveed/row/CellPositionInRow.java 0 14 0
org/csveed/row/HeaderImpl.java 0 37 0
org/csveed/row/Line.java 0 4 0
org/csveed/row/LineWithInfo.java 0 73 0
org/csveed/row/RowImpl.java 0 39 0
org/csveed/row/RowInstructions.java 0 16 0
org/csveed/row/RowInstructionsImpl.java 0 78 0
org/csveed/row/RowReader.java 0 8 0
org/csveed/row/RowReaderImpl.java 0 107 0
org/csveed/row/RowWriter.java 0 8 0
org/csveed/row/RowWriterImpl.java 0 94 0
org/csveed/token/EncounteredSymbol.java 0 18 0
org/csveed/token/ParseException.java 0 21 0
org/csveed/token/ParseState.java 0 30 0
org/csveed/token/ParseStateMachine.java 0 205 0
org/csveed/token/SymbolMapping.java 0 126 0
org/csveed/token/TokenState.java 0 9 0

Rules

Category Rule Violations Severity
coding FallThrough 1  Warning
OverloadMethodsDeclarationOrder 1  Warning
imports CustomImportOrder
  • separateLineBetweenGroups: "true"
  • sortImportsInGroupAlphabetically: "true"
  • customImportOrderRules: "STATIC###THIRD_PARTY_PACKAGE"
  • tokens: "IMPORT, STATIC_IMPORT, PACKAGE_DEF"
26  Warning
indentation Indentation
  • throwsIndent: "4"
  • arrayInitIndent: "2"
  • caseIndent: "2"
  • basicOffset: "2"
  • braceAdjustment: "2"
  • lineWrappingIndentation: "4"
2676  Warning
javadoc JavadocParagraph 8  Warning
SummaryJavadoc
  • forbiddenSummaryFragments: "^@return the *|^This method returns |^A [{]@code [a-zA-Z0-9]+[}]( is a )"
1  Warning
naming AbbreviationAsWordInName
  • tokens: "CLASS_DEF, INTERFACE_DEF, ENUM_DEF, ANNOTATION_DEF, ANNOTATION_FIELD_DEF, PARAMETER_DEF, VARIABLE_DEF, METHOD_DEF, PATTERN_VARIABLE_DEF, RECORD_DEF, RECORD_COMPONENT_DEF"
  • ignoreFinal: "false"
  • allowedAbbreviations: "XML,URL"
  • allowedAbbreviationLength: "0"
1  Warning
sizes LineLength
  • fileExtensions: "java"
  • max: "120"
  • ignorePattern: "^package.*|^import.*|a href|href|http://|https://|ftp://"
2  Error

Details

org/csveed/annotations/CsvCell.java

Severity Category Rule Message Line
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 50

org/csveed/annotations/CsvConverter.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.conversion.Converter' 18
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 32

org/csveed/annotations/CsvDate.java

Severity Category Rule Message Line
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 31

org/csveed/annotations/CsvFile.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.AbstractMapper' 18
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 56
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 79
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 96
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 113
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 121

org/csveed/annotations/CsvLocalizedNumber.java

Severity Category Rule Message Line
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'annotation field def modifier' has incorrect indentation level 4, expected level should be 2. 46

org/csveed/api/CsvClient.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.AbstractMapper' 17
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 53
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 79
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 87
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 97
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 117
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 124
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 131
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 138
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 145
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 153
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 160
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 172
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 185
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 197
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 210
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 222
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 234
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 246
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 258
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 270
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 284
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 298
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 311
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 325
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 339
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 354
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 366
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 380
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 395
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 405
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 415

org/csveed/api/CsvClientImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.AbstractMapper' 19
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 53
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 56
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 82
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 92
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 96
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 97
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 107
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 108
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 118
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 119
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 120
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 130
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 132
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 133
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 134
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 135
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 137
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 139
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 140
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 142
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 144
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 145
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 147
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 149
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 150
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 152
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 154
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 155
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 157
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 159
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 160
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 162
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 164
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 165
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 167
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 169
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 170
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 172
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 174
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 175
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 177
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 179
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 180
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 182
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 184
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 185
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 187
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 189
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 190
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 192
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 194
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 195
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 197
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 199
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 200
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 202
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 204
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 205
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 207
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 209
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 210
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 212
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 214
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 215
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 217
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 219
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 220
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 221
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 223
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 225
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 226
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 227
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 229
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 231
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 232
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 233
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 235
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 237
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 238
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 239
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 241
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 243
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 244
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 245
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 247
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 249
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 250
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 251
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 253
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 255
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 256
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 257
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 259
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 261
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 262
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 263
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 265
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 267
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 268
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 269
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 271
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 273
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 274
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 275
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 277
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 279
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 280
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 281
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 283
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 285
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 286
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 287
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 289
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 291
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 292
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 293
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 295
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 297
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 298
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 299
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 301
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 303
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 304
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 305
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 307
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 309
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 310
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 311
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 313
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 315
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 316
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 317
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 319
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 321
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 322
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 323
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 325
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 327
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 328
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 329
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 331
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 333
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 334
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 335
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 342
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 343
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 344
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 347
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 348
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 349
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 356
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 357
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 358
 Warning sizes LineLength Line is longer than 120 characters (found 128). 359
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 360
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 361
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 362
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 369
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 370
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 371
 Warning sizes LineLength Line is longer than 120 characters (found 128). 372
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 373
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 374
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 375
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 382
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 383
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 384
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 386
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 387
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 388
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 395
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 396
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 397
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 399
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 400
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 401

org/csveed/api/Header.java

Severity Category Rule Message Line
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 52

org/csveed/api/Row.java

Severity Category Rule Message Line
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 93

org/csveed/bean/AbstractMapper.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 15
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 56
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 66
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 76
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 79
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 80
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 81
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 84
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 94
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 111
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 113
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 115
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 117
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 118
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 119
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 120
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 122
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 123
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 124
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 125
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 126
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 127
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 131
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 132
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 133
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 134
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 135
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 149
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 152
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 153
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 154
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 156
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 157
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 158
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 159
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 160
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 161
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 179
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 181
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 182
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 183
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 184
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 186
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 188
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 189
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 197
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 198
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 199

org/csveed/bean/BeanInstructions.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.conversion.Converter' 16
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 86
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 98
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 122
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 134
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 146
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 160
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 174
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 187
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 201
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 215
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 230
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 242
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 256
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 271
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 281
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 291
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 298
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 305
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 312
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 319
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 326
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 333
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 338

org/csveed/bean/BeanInstructionsImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.conversion.Converter' 17
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 67
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 70
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 71
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 84
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 88
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 91
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 96
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 103
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 104
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 105
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 106
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 107
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 108
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 115
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 117
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 119
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 122
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 124
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 126
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 127
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 128
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 130
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 132
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 133
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 134
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 136
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 138
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 139
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 140
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 142
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 144
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 145
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 146
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 148
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 152
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 154
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 156
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 157
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 158
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 160
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 162
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 163
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 164
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 166
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 168
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 169
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 170
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 172
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 174
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 175
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 176
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 178
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 180
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 181
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 182
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 184
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 186
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 187
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 188
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 190
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 192
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 193
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 194
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 196
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 198
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 199
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 200
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 202
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 204
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 205
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 206
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 208
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 210
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 211
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 212
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 214
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 216
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 217
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 218
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 220
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 222
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 223
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 224
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 226
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 228
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 229
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 230
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 232
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 234
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 235
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 236
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 238
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 240
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 241
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 242
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 244
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 246
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 247
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 249
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 251
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 252
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 254
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 256
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 257
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 259
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 261
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 262
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 264
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 266
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 267

org/csveed/bean/BeanParser.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.annotations.CsvCell' 17
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 52
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 53
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 54
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 58
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 77
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 78
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 79
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 80
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 81
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 82
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 83
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 84
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 85
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 86
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 87
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 88
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 89
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 90
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 91
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 92
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 96
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 97
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 107
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 108
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 110
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 111
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 112
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 113
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 114
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 115
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 116
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 117
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 125
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 127
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 133
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 143
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 144
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 145
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 155
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 156
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 157
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 159
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 160
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 161
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 162
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 174
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 175
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 177
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 178
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 179
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 180

org/csveed/bean/BeanProperties.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.conversion.Converter' 27
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 70
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 83
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 84
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 85
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 93
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 94
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 95
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 96
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 97
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 98
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 102
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 103
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 104
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 114
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 116
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 117
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 118
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 119
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 120
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 122
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 123
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 135
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 136
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 137
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 138
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 139
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 141
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 142
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 152
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 153
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 154
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 164
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 165
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 166
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 176
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 177
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 178
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 179
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 181
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 182
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 184
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 185
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 195
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 196
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 197
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 205
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 206
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 208
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 209
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 217
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 218
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 220
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 221
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 229
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 230
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 231
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 232
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 233
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 234
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 242
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 243
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 244
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 245
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 253
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 254
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 255
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 256
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 263
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 264
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 265
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 272
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 273
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 274
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 284
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 285
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 286
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 287
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 288
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 289
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 299
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 300
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 301
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 302
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 303
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 304
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 314
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 315
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 316
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 317
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 318
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 319
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 320
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 322
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 332
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 333
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 334
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 344
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 345
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 346
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 348
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 351
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 352
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 359
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 360
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 361
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 368
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 369
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 370

org/csveed/bean/BeanProperty.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.conversion.Converter' 16
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 52
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 83
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 100
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 102
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 111
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 119
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 121
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 129
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 130
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 131
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 138
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 139
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 140
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 148
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 149
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 150
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 157
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 158
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 159
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 167
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 168
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 169
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 176
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 177
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 178
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 186
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 187
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 188
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 195
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 196
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 197
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 199
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 201
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 202
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 204
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 206
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 207
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 208
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 209
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 210
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 211
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 218
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 219
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 221

org/csveed/bean/BeanReader.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 15
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 53
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 75
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 82

org/csveed/bean/BeanReaderImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 17
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 76
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 83
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 84
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 85
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 86
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 89
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 95
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 96
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 97
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 98
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 101
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 103
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 105
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 107
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 108
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 111
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 112
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 113
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 115
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 116
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 117
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 119
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 122
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 127
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 128
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 129
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 136
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 137
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 138
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 139
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 141
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 143
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 145
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 146
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 148
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 151
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 153
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 155
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 156
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 158
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 160
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 161
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 168
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 169
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 170
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 171
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 172
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 174
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 175
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 182
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 184
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 185
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 192
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 194
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 195
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 196
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 197
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 198
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 199
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 200
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 202
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 204
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 205

org/csveed/bean/BeanWriter.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.row.RowWriter' 15
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51

org/csveed/bean/BeanWriterImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.conversion.BeanWrapper' 16
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 76
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 81
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 83
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 85
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 91
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'try' has incorrect indentation level 12, expected level should be 6. 93
 Warning indentation Indentation 'try' child has incorrect indentation level 16, expected level should be 8. 94
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 12, expected level should be 6. 95
 Warning indentation Indentation 'catch' child has incorrect indentation level 16, expected level should be 8. 96
 Warning indentation Indentation 'catch' child has incorrect indentation level 16, expected level should be 8. 97
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 12, expected level should be 6. 98
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 101
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 103
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 105
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 106
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 107
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 108
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 110
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 111
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 112
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 113
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 115
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 117
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 119
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 120

org/csveed/bean/ColumnIndexMapper.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 15
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 42
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 51

org/csveed/bean/ColumnNameMapper.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 15
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 47
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 49
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 50
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 56
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 59

org/csveed/bean/DynamicColumn.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph <p> tag should be placed immediately before the first word, with no space after. 27
 Warning javadoc JavadocParagraph <p> tag should be preceded with an empty line. 27
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 56
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 80
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 82
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 87
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 89
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 101
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 108
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 115
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 116
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 117
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 118
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 119
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 120
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 130
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 132

org/csveed/bean/conversion/AbstractConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 42

org/csveed/bean/conversion/BeanPropertyConversionException.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 33

org/csveed/bean/conversion/BeanWrapper.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.bean.BeanProperty' 15
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 56
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 59
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 60
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 62
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 77
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 81
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 84
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 86
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 98
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 100
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 103
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 113
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 115

org/csveed/bean/conversion/ByteArrayConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 35

org/csveed/bean/conversion/CharArrayConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 22
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 33

org/csveed/bean/conversion/CharacterConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 43
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 46
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 49
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 50
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 53
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 74

org/csveed/bean/conversion/CharsetConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 30
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 38

org/csveed/bean/conversion/ConversionException.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 56
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 58

org/csveed/bean/conversion/ConversionUtil.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 59
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 63
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 64
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 65
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 80
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 84
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 85
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 86
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 87
 Warning indentation Indentation 'else' child has incorrect indentation level 16, expected level should be 8. 88
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 12, expected level should be 6. 89
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 91
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 92

org/csveed/bean/conversion/Converter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 59

org/csveed/bean/conversion/CurrencyConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 35

org/csveed/bean/conversion/CustomBooleanConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 85
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 90
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 92
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 96
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 97
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 99
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 102
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 103
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 107
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 108
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 113
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 115
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 116
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 118
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 121
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 122
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 123
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 124
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 125
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 126
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 127

org/csveed/bean/conversion/CustomNumberConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 64
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 65
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 75
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 78
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 93
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 96
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 98
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 101
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 103
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 104
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 105
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 107

org/csveed/bean/conversion/DateConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 49
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 57
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 60
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 64
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 66
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 75
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 78

org/csveed/bean/conversion/DefaultConverters.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 64
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 91
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 103
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 105

org/csveed/bean/conversion/EasyAbstractConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 28
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 34

org/csveed/bean/conversion/EnumConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 43

org/csveed/bean/conversion/NoConverterFoundException.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 30
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 31

org/csveed/bean/conversion/NumberUtils.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 53
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 56
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 57
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 58
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 59
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 60
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 63
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 64
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 65
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 66
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 67
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 70
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 71
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 72
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 73
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 74
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 77
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 80
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 82
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 83
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 85
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 88
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 91
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 96
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 97
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 100
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 111
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 113
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 127
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 129
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 132
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 133
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 134
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 135
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 136
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 137
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 138
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 139
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 141
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 142
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 143
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 144
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 145
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 146
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 147
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 148
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 149
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 150
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 152
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 153
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 154
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 155
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 157
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 173
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 174
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 175
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 176
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 177
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 178
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 179
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 180
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 181
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 182
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 183
 Warning indentation Indentation 'try' has incorrect indentation level 12, expected level should be 6. 184
 Warning indentation Indentation 'try' child has incorrect indentation level 16, expected level should be 8. 185
 Warning indentation Indentation 'try' child has incorrect indentation level 16, expected level should be 8. 186
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 12, expected level should be 6. 187
 Warning indentation Indentation 'catch' child has incorrect indentation level 16, expected level should be 8. 188
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 12, expected level should be 6. 189
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 190
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 191
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 192
 Warning indentation Indentation 'finally rcurly' has incorrect indentation level 12, expected level should be 6. 193
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 194
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 195
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 196
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 206
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 207
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 208
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 209
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 219
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 220
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 221
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 222
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 225
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 226
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 227
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 228
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 231
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 232
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 233
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 234
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 235
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 236
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 237
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 238
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 239
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 240
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 242
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 243
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 244

org/csveed/bean/conversion/PatternConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 49

org/csveed/bean/conversion/StringConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 22
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 32
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 33

org/csveed/bean/conversion/TimeZoneConverter.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 24
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 29
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 35

org/csveed/bean/conversion/package-info.java

Severity Category Rule Message Line
 Warning javadoc JavadocParagraph <p> tag should be placed immediately before the first word, with no space after. 12
 Warning javadoc JavadocParagraph Redundant <p> tag. 12
 Warning javadoc JavadocParagraph <p> tag should be placed immediately before the first word, with no space after. 15
 Warning javadoc JavadocParagraph <p> tag should be preceded with an empty line. 15

org/csveed/common/Column.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 15
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 74
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 91
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 92
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 95
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 107
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 108
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 110
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 111
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 119
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 122
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 130
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 132
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 133
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 141
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 142
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 143
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 150
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 152
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 159
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 160
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 161
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 168
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 169
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 170
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 177
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 178
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 179
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 186
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 187
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 188
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 195
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 196
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 198
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 200
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 202
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 203
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 204
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 205
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 206
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 208
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 210
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 211
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 213
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 215
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 216
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 218
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 220
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 221

org/csveed/common/ColumnExcel.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 27
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 39
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 40
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 42
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 43
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 44
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 47

org/csveed/common/ColumnIndexKey.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 28
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 34
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 42
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 49
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 60

org/csveed/common/ColumnKey.java

Severity Category Rule Message Line
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 23
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 47

org/csveed/common/ColumnNameKey.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 28
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 34
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 35
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 42
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 44
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 49
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 60

org/csveed/report/AbstractCsvError.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 31
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 36
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 48

org/csveed/report/CsvError.java

Severity Category Rule Message Line
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51

org/csveed/report/CsvException.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 39
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 40
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 49
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 62
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 63
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 64
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 65
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 66
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 69

org/csveed/report/GeneralError.java

Severity Category Rule Message Line
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 28
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 44

org/csveed/report/RowError.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 21
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 37
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 38
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 39
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 68

org/csveed/report/RowPart.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 34
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 53

org/csveed/report/RowReport.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 53
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 70
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 81
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 84
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 87
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 90
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 97
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 102
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 103
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 105
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 106
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 116
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 117
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 118
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 119
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 122
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 132
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 133
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 134
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 135
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 136
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 137
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 138
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 139
 Warning indentation Indentation 'else' child has incorrect indentation level 16, expected level should be 8. 140
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 12, expected level should be 6. 141
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 142
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 143
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 144
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 145
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 146
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 147
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 157
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 158
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 159
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 160
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 161
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 162
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 163
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 173
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 174
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 175
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 176
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 177
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 178
 Warning indentation Indentation 'else' child has incorrect indentation level 16, expected level should be 8. 179
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 12, expected level should be 6. 180
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 181
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 182
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 183

org/csveed/row/CellPositionInRow.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 30
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 40
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 49
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 60

org/csveed/row/HeaderImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 18
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 46
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 48
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 49
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 50
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 56
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 64
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 73
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 76
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 83
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 86

org/csveed/row/Line.java

Severity Category Rule Message Line
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 26
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 53

org/csveed/row/LineWithInfo.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.common.Column' 19
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 42
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 45
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 53
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 54
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 55
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 56
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 58
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 63
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 70
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 71
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 77
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 94
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 95
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 96
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 97
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 98
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 106
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 107
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 108
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 120
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 122
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 123
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 124
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 125
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 126
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 127
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 128
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 129
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 130
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 131
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 132
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 133
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 134
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 135
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 136
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 137
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 139
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 141
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 142
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 144
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 146
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 147
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 149
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 152
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 153
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 154
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 155
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 156
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 158
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 160
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 161

org/csveed/row/RowImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 15
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 49
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 53
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 57
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 75
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 78
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 83
 Warning coding OverloadMethodsDeclarationOrder All overloaded methods should be placed next to each other. Placing non-overloaded methods in between overloaded methods with the same type is a violation. Previous overloaded method located at line '65'. 85
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 85
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 88
 Warning javadoc SummaryJavadoc First sentence of Javadoc is missing an ending period. 90
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 95
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 97
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 98

org/csveed/row/RowInstructions.java

Severity Category Rule Message Line
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 86
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 98
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 124
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 136
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 143
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 155
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 167
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 179

org/csveed/row/RowInstructionsImpl.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 24
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 27
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 30
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 33
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 36
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 39
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 45
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 46
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 47
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 48
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 49
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 59
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 76
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 82
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 84
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 86
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 96
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 97
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 101
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 102
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 104
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 107
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 108
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 112
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 113
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 115
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 117
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 118
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 119
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 121
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 123
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 124
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 126
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 128
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 129
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 130
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 132
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 134
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 135
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 136
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 138
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 141
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 143
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 145
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 146
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 147
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 149
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 152
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 153
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 155
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 157
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 158
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 159

org/csveed/row/RowReader.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 15
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 57
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 71

org/csveed/row/RowReaderImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 18
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 35
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 38
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 53
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 54
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 65
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 66
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 68
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 74
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 75
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 76
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 77
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 80
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 82
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 84
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 85
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 86
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 87
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 89
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 90
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 91
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 93
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 96
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 101
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 108
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 109
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 115
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 116
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 117
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 118
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 119
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 120
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 122
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 123
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 131
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 132
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 133
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 134
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 135
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 136
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 138
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 139
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 141
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 143
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 144
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 149
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 152
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 159
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 160
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 162
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 163
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 164
 Warning indentation Indentation 'while' has incorrect indentation level 12, expected level should be 6. 165
 Warning indentation Indentation 'while' child has incorrect indentation level 16, expected level should be 8. 166
 Warning indentation Indentation 'while' child has incorrect indentation level 16, expected level should be 8. 167
 Warning indentation Indentation 'try' has incorrect indentation level 16, expected level should be 8. 168
 Warning indentation Indentation 'try' child has incorrect indentation level 20, expected level should be 10. 169
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 16, expected level should be 8. 170
 Warning indentation Indentation 'catch' child has incorrect indentation level 20, expected level should be 10. 171
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 16, expected level should be 8. 172
 Warning indentation Indentation 'try' has incorrect indentation level 16, expected level should be 8. 173
 Warning indentation Indentation 'try' child has incorrect indentation level 20, expected level should be 10. 174
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 16, expected level should be 8. 175
 Warning indentation Indentation 'catch' child has incorrect indentation level 20, expected level should be 10. 176
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 16, expected level should be 8. 177
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 178
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 179
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 180
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 181
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 182
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 183
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 184
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 185
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 186
 Warning indentation Indentation 'while' child has incorrect indentation level 16, expected level should be 8. 187
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 188
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 189
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 190
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 12, expected level should be 6. 191
 Warning indentation Indentation 'while' child has incorrect indentation level 12, expected level should be 6. 192
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 193
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 194
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 195
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 197
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 199
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 200

org/csveed/row/RowWriter.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 15
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 29
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 47
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 80

org/csveed/row/RowWriterImpl.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.api.Header' 18
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 31
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 48
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 49
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 62
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 63
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 65
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 67
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 68
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 69
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 72
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 74
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 75
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 77
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 79
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 83
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 84
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 86
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 88
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 89
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 94
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 96
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 98
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 99
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 100
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 101
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 103
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 105
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 107
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 109
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 111
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 120
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'try' has incorrect indentation level 8, expected level should be 4. 122
 Warning indentation Indentation 'while' has incorrect indentation level 12, expected level should be 6. 123
 Warning indentation Indentation 'while' child has incorrect indentation level 16, expected level should be 8. 124
 Warning indentation Indentation 'while' child has incorrect indentation level 16, expected level should be 8. 125
 Warning indentation Indentation 'while' child has incorrect indentation level 16, expected level should be 8. 126
 Warning indentation Indentation 'while' child has incorrect indentation level 16, expected level should be 8. 127
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 129
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 130
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 131
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 132
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 133
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 134
 Warning indentation Indentation 'else' child has incorrect indentation level 20, expected level should be 10. 135
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 16, expected level should be 8. 136
 Warning indentation Indentation 'while' child has incorrect indentation level 16, expected level should be 8. 137
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 12, expected level should be 6. 138
 Warning indentation Indentation 'try' child has incorrect indentation level 12, expected level should be 6. 139
 Warning indentation Indentation 'try rcurly' has incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 141
 Warning indentation Indentation 'catch' child has incorrect indentation level 12, expected level should be 6. 142
 Warning indentation Indentation 'catch rcurly' has incorrect indentation level 8, expected level should be 4. 143
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 144
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 152
 Warning naming AbbreviationAsWordInName Abbreviation in name 'writeEOL' must contain no more than '1' consecutive capital letters. 152
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 153
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 154
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 162
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 163
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 164
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 175
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 176
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 177
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 178
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 179
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 180
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 181
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 182
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 193
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 194
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 195
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 205
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 206
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 207
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 208
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 209
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 210
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 211

org/csveed/token/EncounteredSymbol.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 50
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 59
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 60
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 72
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 73
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 81
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 82
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 83
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 90
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 91
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 92

org/csveed/token/ParseException.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 19
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 22
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 25
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 28
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 41
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 43
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 44
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 51
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 52
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 53
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 60
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 61
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 70
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 71
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 77

org/csveed/token/ParseState.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 73
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 89
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 91
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 92
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 95
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 96
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 103
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 104
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 112
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 113
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 114
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 121
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 122
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 123
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 130
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 131
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 132
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 139
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 141
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 148
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 149
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 150

org/csveed/token/ParseStateMachine.java

Severity Category Rule Message Line
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 55
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 58
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 61
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 64
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 70
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 77
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 79
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 86
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 87
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 88
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 95
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 96
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 97
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 110
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 112
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 114
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 116
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 117
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 118
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 119
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 122
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 123
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 125
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 126
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 127
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 128
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 129
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 130
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 132
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 133
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 134
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 136
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 137
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 138
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 140
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 141
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 143
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 144
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 145
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 146
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 147
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 148
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 149
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 152
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 153
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 154
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 155
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 156
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 157
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 158
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 159
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 160
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 162
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 163
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 164
 Warning indentation Indentation 'else' child has incorrect indentation level 12, expected level should be 6. 165
 Warning indentation Indentation 'else rcurly' has incorrect indentation level 8, expected level should be 4. 166
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 168
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 170
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 171
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 178
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 179
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 180
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 187
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 188
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 189
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 196
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 197
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 198
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 205
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 206
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 207
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 214
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 215
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 216
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 231
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 233
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 234
 Warning indentation Indentation 'switch' has incorrect indentation level 16, expected level should be 8. 235
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 236
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 237
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 238
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 239
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 240
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 241
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 16, expected level should be 8. 242
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 243
 Warning indentation Indentation 'switch' has incorrect indentation level 16, expected level should be 8. 244
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 245
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 246
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 247
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 248
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 249
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 250
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 16, expected level should be 8. 251
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 252
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 253
 Warning indentation Indentation 'if' child has incorrect indentation level 20, expected level should be 10. 254
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 255
 Warning coding FallThrough Fall through from previous branch of the switch statement. 257
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 257
 Warning indentation Indentation 'switch' has incorrect indentation level 16, expected level should be 8. 258
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 259
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 260
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 261
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 262
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 263
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 264
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 265
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 266
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 267
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 268
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 269
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 270
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 16, expected level should be 8. 271
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 272
 Warning indentation Indentation 'switch' has incorrect indentation level 16, expected level should be 8. 273
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 274
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 275
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 276
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 277
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 278
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 279
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 280
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 281
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 282
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 283
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 284
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 285
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 16, expected level should be 8. 286
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 287
 Warning indentation Indentation 'switch' has incorrect indentation level 16, expected level should be 8. 288
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 289
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 290
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 291
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 292
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 293
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 294
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 295
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 296
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 297
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 298
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 16, expected level should be 8. 299
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 300
 Warning indentation Indentation 'switch' has incorrect indentation level 16, expected level should be 8. 301
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 302
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 303
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 304
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 305
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 306
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 307
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 308
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 309
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 310
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 311
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 16, expected level should be 8. 312
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 313
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 314
 Warning indentation Indentation 'switch' has incorrect indentation level 16, expected level should be 8. 315
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 316
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 317
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 318
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 319
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 320
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 321
 Warning indentation Indentation 'case' child has incorrect indentation level 20, expected level should be 10. 322
 Warning indentation Indentation 'block' child has incorrect indentation level 24, expected level should be 12. 323
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 16, expected level should be 8. 324
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 325
 Warning indentation Indentation 'if' has incorrect indentation level 16, expected level should be 8. 326
 Warning indentation Indentation 'switch' has incorrect indentation level 20, expected level should be 10. 327
 Warning indentation Indentation 'case' child has incorrect indentation level 24, expected level should be 12. 328
 Warning indentation Indentation 'block' child has incorrect indentation level 28, expected level should be 14. 329
 Warning indentation Indentation 'case' child has incorrect indentation level 24, expected level should be 12. 330
 Warning indentation Indentation 'block' child has incorrect indentation level 28, expected level should be 14. 331
 Warning indentation Indentation 'case' child has incorrect indentation level 24, expected level should be 12. 332
 Warning indentation Indentation 'block' child has incorrect indentation level 28, expected level should be 14. 333
 Warning indentation Indentation 'case' child has incorrect indentation level 24, expected level should be 12. 334
 Warning indentation Indentation 'block' child has incorrect indentation level 28, expected level should be 14. 335
 Warning indentation Indentation 'case' child has incorrect indentation level 24, expected level should be 12. 336
 Warning indentation Indentation 'block' child has incorrect indentation level 28, expected level should be 14. 337
 Warning indentation Indentation 'case' child has incorrect indentation level 24, expected level should be 12. 338
 Warning indentation Indentation 'block' child has incorrect indentation level 28, expected level should be 14. 339
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 20, expected level should be 10. 340
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 16, expected level should be 8. 341
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 343
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 344
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 345
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 346
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 347
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 355
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 356
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 357
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 364
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 365
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 366

org/csveed/token/SymbolMapping.java

Severity Category Rule Message Line
 Warning imports CustomImportOrder Extra separation in import group before 'org.csveed.report.CsvException' 23
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 37
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 40
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 46
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 49
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 52
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 55
 Warning javadoc JavadocParagraph <p> tag should be placed immediately before the first word, with no space after. 59
 Warning javadoc JavadocParagraph <p> tag should be preceded with an empty line. 59
 Warning indentation Indentation 'member def modifier' has incorrect indentation level 4, expected level should be 2. 62
 Warning indentation Indentation 'ctor def modifier' has incorrect indentation level 4, expected level should be 2. 67
 Warning indentation Indentation 'ctor def' child has incorrect indentation level 8, expected level should be 4. 68
 Warning indentation Indentation 'ctor def rcurly' has incorrect indentation level 4, expected level should be 2. 69
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 74
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 75
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 76
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 77
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 78
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 79
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 80
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 81
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 82
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 92
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 93
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 94
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 95
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 105
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 106
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 107
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 117
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 118
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 119
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 120
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 121
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 122
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 132
 Warning indentation Indentation 'while' has incorrect indentation level 8, expected level should be 4. 133
 Warning indentation Indentation 'while rcurly' has incorrect indentation level 8, expected level should be 4. 135
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 136
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 137
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 138
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 139
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 140
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 145
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 146
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 147
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 148
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 149
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 150
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 151
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 152
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 153
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 154
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 155
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 156
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 157
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 158
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 168
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 169
 Warning indentation Indentation 'for' has incorrect indentation level 8, expected level should be 4. 170
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 171
 Warning indentation Indentation 'for' child has incorrect indentation level 12, expected level should be 6. 172
 Warning indentation Indentation 'for rcurly' has incorrect indentation level 8, expected level should be 4. 173
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 174
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 175
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 185
 Warning indentation Indentation 'switch' has incorrect indentation level 8, expected level should be 4. 186
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 187
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 188
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 189
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 190
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 191
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 192
 Warning indentation Indentation 'case' child has incorrect indentation level 12, expected level should be 6. 193
 Warning indentation Indentation 'block' child has incorrect indentation level 16, expected level should be 8. 194
 Warning indentation Indentation 'switch rcurly' has incorrect indentation level 8, expected level should be 4. 195
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 196
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 206
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 207
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 208
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 209
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 210
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 211
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 212
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 219
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 220
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 221
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 233
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 234
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 235
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 236
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 237
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 238
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 239
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 240
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 241
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 242
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 243
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 244
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 245
 Warning indentation Indentation 'if' has incorrect indentation level 12, expected level should be 6. 246
 Warning indentation Indentation 'if' child has incorrect indentation level 16, expected level should be 8. 247
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 12, expected level should be 6. 248
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 249
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 250
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 251
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 252
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 253
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 254
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 261
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 262
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 263
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 271
 Warning indentation Indentation 'if' has incorrect indentation level 8, expected level should be 4. 272
 Warning indentation Indentation 'if' child has incorrect indentation level 12, expected level should be 6. 273
 Warning indentation Indentation 'if rcurly' has incorrect indentation level 8, expected level should be 4. 274
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 275
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 276
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 283
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 284
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 285
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 293
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 294
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 295

org/csveed/token/TokenState.java

Severity Category Rule Message Line
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 32
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 33
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 34
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 41
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 42
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 43
 Warning indentation Indentation 'method def modifier' has incorrect indentation level 4, expected level should be 2. 50
 Warning indentation Indentation 'method def' child has incorrect indentation level 8, expected level should be 4. 51
 Warning indentation Indentation 'method def rcurly' has incorrect indentation level 4, expected level should be 2. 52