static S hostToIP(S host) { for (InetAddress a : InetAddress.getAllByName(name)) { S ip = a.getHostAddress(); if (isIPv4(ip)) ret ip; } fail("No IP found for " + host); }