Parses a record from the string, and indicates that the record should be inserted into the zone replacing any other records with the same name and type. @throws IOException The record could not be parsed.
(Name name, int type, long ttl, String record)
| 248 | * @throws IOException The record could not be parsed. |
| 249 | */ |
| 250 | public void |
| 251 | replace(Name name, int type, long ttl, String record) throws IOException { |
| 252 | delete(name, type); |
| 253 | add(name, type, ttl, record); |
| 254 | } |
| 255 | |
| 256 | /** |
| 257 | * Parses a record from the tokenizer, and indicates that the record |