001package jmri.jmrit.display.switchboardEditor; 002 003/** 004 * Enum representing what a switchboard editor cell should display. 005 * @author Bob Jacobsen Copyright (c) 2023 006 */ 007 008public enum SwitchBoardLabelDisplays { 009 SYSTEM_NAME, // was 0 010 BOTH_NAMES, // was 1 011 USER_NAME // was 2 012} 013