package p.studio; public enum AppMode { Game("Game"), Shell("Shell"), ; private final String reference; AppMode(final String reference) { this.reference = reference; } public String exportReferenceName() { return reference; } }