View Javadoc
1   /*
2   com.puppycrawl.tools.checkstyle.checks.naming.MemberNameCheck
3   format = (default)^[a-z][a-zA-Z0-9]*$
4   applyToPublic = (default)true
5   applyToProtected = (default)true
6   applyToPackage = (default)true
7   applyToPrivate = (default)true
8   
9   
10  */
11  
12  package com.puppycrawl.tools.checkstyle.grammar.java8;
13  
14  
15  public class InputReceiverParameter { // ok
16      public void m4(InputReceiverParameter this) {}
17  
18      private class Inner {
19          public Inner(InputReceiverParameter InputReceiverParameter.this) {}
20      }
21  }