java/sql-dk/src/info/globalcode/sql/dk/SQLType.java
author František Kučera <franta-hg@frantovo.cz>
Fri, 27 Dec 2013 19:33:46 +0100
branchv_0
changeset 86 6b0eb3b22eb8
parent 68 574cd7fbb5b2
child 92 1399ac70a5bd
permissions -rw-r--r--
log SQLWarnings
     1 /**
     2  * SQL-DK
     3  * Copyright © 2013 František Kučera (frantovo.cz)
     4  *
     5  * This program is free software: you can redistribute it and/or modify
     6  * it under the terms of the GNU General Public License as published by
     7  * the Free Software Foundation, either version 3 of the License, or
     8  * (at your option) any later version.
     9  *
    10  * This program is distributed in the hope that it will be useful,
    11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    13  * GNU General Public License for more details.
    14  *
    15  * You should have received a copy of the GNU General Public License
    16  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    17  */
    18 package info.globalcode.sql.dk;
    19 
    20 import java.sql.Types;
    21 
    22 /**
    23  *
    24  * @author Ing. František Kučera (frantovo.cz)
    25  */
    26 public enum SQLType {
    27 
    28 	VARCHAR(Types.VARCHAR),
    29 	BOOLEAN(Types.BOOLEAN),
    30 	INTEGER(Types.INTEGER),
    31 	DECIMAL(Types.DECIMAL);
    32 	/**
    33 	 * TODO: more types
    34 	 */
    35 	private int code;
    36 
    37 	private SQLType(int code) {
    38 		this.code = code;
    39 	}
    40 
    41 	/**
    42 	 * @see java.sql.Types.Types
    43 	 */
    44 	public int getCode() {
    45 		return code;
    46 	}
    47 
    48 	/**
    49 	 * @param code see {@linkplain java.sql.Types.Types}
    50 	 * @return found SQLType
    51 	 * @throws IllegalArgumentException if no data type has given code
    52 	 */
    53 	public SQLType valueOf(int code) {
    54 		for (SQLType t : values()) {
    55 			if (t.code == code) {
    56 				return t;
    57 			}
    58 		}
    59 		throw new IllegalArgumentException("No data type has code: " + code);
    60 	}
    61 }