1 package foo.bar;
2 
3 public interface AnInterface {
4 
5     enum ListChangeType {
6         ADDITION,
7         REMOVAL
8     }
9 }
10