java/sql-dk/src/main/java/info/globalcode/sql/dk/SQLType.java
author František Kučera <franta-hg@frantovo.cz>
Thu, 24 Oct 2019 21:43:08 +0200
branchv_0
changeset 250 aae5009bd0af
parent 238 4a1864c3e867
permissions -rw-r--r--
fix license version: GNU GPLv3
     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, version 3 of the License.
     8  *
     9  * This program is distributed in the hope that it will be useful,
    10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    12  * GNU General Public License for more details.
    13  *
    14  * You should have received a copy of the GNU General Public License
    15  * along with this program. If not, see <http://www.gnu.org/licenses/>.
    16  */
    17 package info.globalcode.sql.dk;
    18 
    19 import java.sql.Types;
    20 
    21 /**
    22  * Data types of SQL parameters.
    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 static 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 }