| |
|
| java.lang.Object org.xbill.DNS.RRset
RRset | public class RRset (Code) | | A set of Records with the same name, type, and class. Also included
are all RRSIG records signing the data records.
See Also: Record See Also: RRSIGRecord See Also: author: Brian Wellington |
RRset | public RRset()(Code) | | Creates an empty RRset
|
RRset | public RRset(Record record)(Code) | | Creates an RRset and sets its contents to the specified record
|
RRset | public RRset(RRset rrset)(Code) | | Creates an RRset with the contents of an existing RRset
|
addRR | public synchronized void addRR(Record r)(Code) | | Adds a Record to an RRset
|
clear | public synchronized void clear()(Code) | | Deletes all Records from an RRset
|
deleteRR | public synchronized void deleteRR(Record r)(Code) | | Deletes a Record from an RRset
|
getDClass | public int getDClass()(Code) | | Returns the class of the records
See Also: DClass |
getName | public Name getName()(Code) | | Returns the name of the records
See Also: Name |
getTTL | public synchronized long getTTL()(Code) | | Returns the ttl of the records
|
getType | public int getType()(Code) | | Returns the type of the records
See Also: Type |
rrs | public synchronized Iterator rrs(boolean cycle)(Code) | | Returns an Iterator listing all (data) records.
Parameters: cycle - If true, cycle through the records so that each Iterator willstart with a different record. |
rrs | public synchronized Iterator rrs()(Code) | | Returns an Iterator listing all (data) records. This cycles through
the records, so each Iterator will start with a different record.
|
sigs | public synchronized Iterator sigs()(Code) | | Returns an Iterator listing all signature records
|
size | public int size()(Code) | | Returns the number of (data) records
|
toString | public String toString()(Code) | | Converts the RRset to a String
|
|
|
|