package foo.bar;

public interface AnInterface {

    enum ListChangeType {
        ADDITION,
        REMOVAL
    }
}
