/* Make an enum start with 1 */ public enum TestEnum { ONE, TWO public int getIndex() { return ordinal() + 1; } }