private static String getMDUpdateActionString()

in src/main/java/deltix/ember/sample/md/MarketDataSampleApp.java [163:173]


    private static String getMDUpdateActionString(char value) {
        switch (value) {
            case MDUpdateAction.NEW: return "New";
            case MDUpdateAction.CHANGE: return "Change";
            case MDUpdateAction.DELETE: return "Delete";
            case MDUpdateAction.DELETE_THRU: return "Delete Thru";
            case MDUpdateAction.DELETE_FROM: return "Delete From";
            // Add more cases as needed
            default: return "Unknown";
        }
    }