*/ @Override public boolean equals(Object o) { if(o == this) { return true; } if(o instanceof Address) { Address other = (Address) o; if(isFromSameString(other.fromString)) { return true; } return isSameAddress(other); } return false; } inet...