View Javadoc
1   package org.checkstyle.suppressionxpathfilter.classfanoutcomplexity;
2   
3   import java.util.Date;
4   
5   public class InputXpathClassFanOutComplexityEnum {
6   
7   }
8   
9   enum MyEnum { // warn
10      IN_PROGRESS, DONE, NEEDS_REVIEW;
11      private Date startedOn;
12  }