Subversion Repositories javautils

Rev

Rev 4 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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