Im working on java, I have created an enum as follows:
public enum myEnum { india, russian, england, north America }
Above
The problem has nothing (specifically) to do with enums: in Java, names can't have spaces. Try eliminating the space (using capitalization to tell the bits apart) or use underscores instead.