View Javadoc
1   /*
2   ConstantName
3   format = (default)^[A-Z][A-Z0-9]*(_[A-Z0-9]+)*$
4   applyToPublic = false
5   applyToProtected = (default)true
6   applyToPackage = (default)true
7   applyToPrivate = (default)true
8   
9   
10  */
11  
12  package com.puppycrawl.tools.checkstyle.checks.naming.constantname;
13  
14  public interface InputConstantNameInterfaceIgnorePublic {
15      int __MAX_SIZE = 1024;
16      public int __MAX_SIZE2 = 1024;
17  }
18  
19  @interface Anno {
20      int __MAX_SIZ1E = 1024;
21      public int __MAX_SIZE2 = 1024;
22  }