I have this two-list hashtable:
Hashtable<List<String>, List<String>> aliases = new Hashtable<>();
aliases.put(List.of("name1", "name2"), List.of("John", "15"));
aliases.put(List.of("name3", "name4"), List.of("William", "23"));
String args = "name1";
I'd want to see if args variable exists in the list and get it