java/sql-dk/src/info/globalcode/sql/dk/SQLType.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 02 Jan 2014 19:59:33 +0100
branchv_0
changeset 113 575a8c6b91ad
parent 93 5a4dbe6f962c
child 146 4f4f515df807
permissions -rw-r--r--
Relax NG schema for XML configuration
     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 	/**
    29 	 * Names must be upper case – user input is also converted to upper case → case insensitive
    30 	 */
    31 	BIT(Types.BIT),
    32 	TINYINT(Types.TINYINT),
    33 	SMALLINT(Types.SMALLINT),
    34 	INTEGER(Types.INTEGER),
    35 	BIGINT(Types.BIGINT),
    36 	FLOAT(Types.FLOAT),
    37 	REAL(Types.REAL),
    38 	DOUBLE(Types.DOUBLE),
    39 	NUMERIC(Types.NUMERIC),
    40 	DECIMAL(Types.DECIMAL),
    41 	CHAR(Types.CHAR),
    42 	VARCHAR(Types.VARCHAR),
    43 	LONGVARCHAR(Types.LONGVARCHAR),
    44 	DATE(Types.DATE),
    45 	TIME(Types.TIME),
    46 	TIMESTAMP(Types.TIMESTAMP),
    47 	BINARY(Types.BINARY),
    48 	VARBINARY(Types.VARBINARY),
    49 	LONGVARBINARY(Types.LONGVARBINARY),
    50 	NULL(Types.NULL),
    51 	OTHER(Types.OTHER),
    52 	JAVA_OBJECT(Types.JAVA_OBJECT),
    53 	DISTINCT(Types.DISTINCT),
    54 	STRUCT(Types.STRUCT),
    55 	ARRAY(Types.ARRAY),
    56 	BLOB(Types.BLOB),
    57 	CLOB(Types.CLOB),
    58 	REF(Types.REF),
    59 	DATALINK(Types.DATALINK),
    60 	BOOLEAN(Types.BOOLEAN),
    61 	ROWID(Types.ROWID),
    62 	NCHAR(Types.NCHAR),
    63 	NVARCHAR(Types.NVARCHAR),
    64 	LONGNVARCHAR(Types.LONGNVARCHAR),
    65 	NCLOB(Types.NCLOB),
    66 	SQLXML(Types.SQLXML);
    67 	/** value from java.sql.Types */
    68 	private int code;
    69 
    70 	private SQLType(int code) {
    71 		this.code = code;
    72 	}
    73 
    74 	/**
    75 	 * @see java.sql.Types.Types
    76 	 */
    77 	public int getCode() {
    78 		return code;
    79 	}
    80 
    81 	/**
    82 	 * @param code see {@linkplain java.sql.Types.Types}
    83 	 * @return found SQLType
    84 	 * @throws IllegalArgumentException if no data type has given code
    85 	 */
    86 	public SQLType valueOf(int code) {
    87 		for (SQLType t : values()) {
    88 			if (t.code == code) {
    89 				return t;
    90 			}
    91 		}
    92 		throw new IllegalArgumentException("No data type has code: " + code);
    93 	}
    94 }