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  import java.util.List;
15  
16  public class InputAnnotations1 {
17  
18      @NonNull
19      List<Integer> numbers;
20  
21      @interface NonNull {
22  
23      }
24  
25  }