toValue method
Implementation
String toValue() {
switch (this) {
case RRType.soa:
return 'SOA';
case RRType.a:
return 'A';
case RRType.txt:
return 'TXT';
case RRType.ns:
return 'NS';
case RRType.cname:
return 'CNAME';
case RRType.mx:
return 'MX';
case RRType.naptr:
return 'NAPTR';
case RRType.ptr:
return 'PTR';
case RRType.srv:
return 'SRV';
case RRType.spf:
return 'SPF';
case RRType.aaaa:
return 'AAAA';
case RRType.caa:
return 'CAA';
case RRType.ds:
return 'DS';
}
}