Home | History | Annotate | Download | only in DNS

Lines Matching refs:RRset

17 public class RRset implements Serializable {
29 /** Creates an empty RRset */
31 RRset() {
37 /** Creates an RRset and sets its contents to the specified record */
39 RRset(Record record) {
44 /** Creates an RRset with the contents of an existing RRset */
46 RRset(RRset rrset) {
47 synchronized (rrset) {
48 rrs = (List) ((ArrayList)rrset.rrs).clone();
49 nsigs = rrset.nsigs;
50 position = rrset.position;
67 /** Adds a Record to an RRset */
77 "rrset");
97 /** Deletes a Record from an RRset */
104 /** Deletes all Records from an RRset */
215 * @throws IllegalStateException if the rrset is empty
220 throw new IllegalStateException("rrset is empty");
238 /** Converts the RRset to a String */