public class Parent { public enum ChildType { FIRST_CHILD(\"I am the first.\"), SECOND_CHILD(\"I am the second.\"); private String myChild
Because the enum is effectively an inner class of the parent.