Searched defs:getRecordClass (Results 1 - 1 of 1) sorted by relevance

/external/jmdns/src/javax/jmdns/impl/
H A DDNSEntry.java65 result = this.getKey().equals(other.getKey()) && this.getRecordType().equals(other.getRecordType()) && this.getRecordClass() == other.getRecordClass();
77 return this.getKey().equals(entry.getKey()) && this.getRecordType().equals(entry.getRecordType()) && ((DNSRecordClass.CLASS_ANY == entry.getRecordClass()) || this.getRecordClass().equals(entry.getRecordClass()));
135 public DNSRecordClass getRecordClass() { method in class:DNSEntry
205 return (entry != null) && (entry.getRecordClass() == this.getRecordClass());
225 dout.writeShort(this.getRecordClass().indexValue());
269 return this.getKey().hashCode() + this.getRecordType().indexValue() + this.getRecordClass()
[all...]

Completed in 217 milliseconds