284285286287288289290
public String getHost() { return (d_host != null && d_host.length() > 0) ? d_host : null; } public IDNA getIDN() { return new IDNA(d_host); }
7677787980818283848586
return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; final IDNA other = (IDNA) obj; if (regname == null) { if (other.regname != null) return false; } else if (!regname.equals(other.regname)) return false;