Subversion Repositories javautils

Rev

Rev 4 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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