package terminal; import static terminal.SelectGraphicRendition.SGR_COMMAND; import java.util.*; import terminal.ControlSequence.NullControlSequence; public class ControlSequenceLookup { private static Map> commands = new HashMap<>(); static { Map sgrCodes = new HashMap<>(); for (SelectGraphicRendition sgr : SelectGraphicRendition.values()) sgrCodes.put(sgr.getCode(), sgr); commands.put(SGR_COMMAND, sgrCodes); } public static ControlSequence lookupControlSequence(char command, String code) { Map codes = commands.getOrDefault(command, new HashMap<>()); return codes.getOrDefault(code, new NullControlSequence()); } }