View Javadoc
1   /*
2   LeftCurly
3   option = (default)eol
4   ignoreEnums = (default)true
5   tokens = ENUM_CONSTANT_DEF
6   
7   
8   */
9   
10  package com.puppycrawl.tools.checkstyle.checks.blocks.leftcurly;
11  
12  public enum InputLeftCurlyEnumConstantDef {
13      FIRST()
14      { // violation ''{' at column 5 should be on the previous line'
15      },
16  
17      SECOND
18          ()
19      { // violation ''{' at column 5 should be on the previous line'
20  
21      }
22  }