Subversion Repositories javautils

Rev

Rev 4 | Blame | Last modification | View Log | RSS feed

  1. package com.dominicsayers.isemail;
  2.  
  3. /**
  4.  * This enumeration contains all possible DNS lookup types.
  5.  *
  6.  * @author Daniel Marschall
  7.  * @version 2010-06-14
  8.  */
  9. public enum DNSType {
  10.  
  11.         A, MX, NS, SOA, PTR, CNAME, AAAA, A6, SRV, NAPTR, TXT, ANY;
  12.  
  13. }
  14.