View Javadoc
1   package org.checkstyle.suppressionxpathfilter.redundantmodifier;
2   
3   public class InputXpathRedundantModifierWithEnum {
4       interface I {
5           static enum E { // warn
6               A, B, C
7           }
8           void m();
9           int x = 0;
10    }
11  }