📄 sqltype.java
字号:
//==============================================================================//===//=== SqlType (adapted class from druid project http://druid.sf.net)//===//=== Copyright (C) by Andrea Carboni.//=== This file may be distributed under the terms of the GPL license.//==============================================================================package org.fao.geonet.apps.setup.druid;import java.sql.Types;//==============================================================================public class SqlType{ //--- possible type sizes public static final int VAR = 0; public static final int CONST = 1; public static final int BOTH = 2; public static final int UNKNOWN = 3; //--------------------------------------------------------------------------- public int iId; public String sName; public int iSize; //--------------------------------------------------------------------------- /** @param id This is the sql type as returned by JDBC */ public SqlType(int id, String name, int size) { iId = id; sName = name; iSize = size; if (iSize < 0) iSize = 0; } //--------------------------------------------------------------------------- public String toString() { return "[id:" +iId+ ", name:" +sName+ "]"; } //--------------------------------------------------------------------------- //--- //--- Type static methods //--- //--------------------------------------------------------------------------- public boolean isInteger() { return (iId == Types.BIGINT) || (iId == Types.INTEGER) || (iId == Types.SMALLINT) || (iId == Types.TINYINT); } //--------------------------------------------------------------------------- public boolean isReal() { return (iId == Types.DECIMAL) || (iId == Types.DOUBLE) || (iId == Types.FLOAT) || (iId == Types.NUMERIC) || (iId == Types.REAL); } //--------------------------------------------------------------------------- public boolean isNumber() { return isInteger() || isReal(); } public boolean isString() { return (iId == Types.CHAR) || (iId == Types.VARCHAR); } public boolean isDate() { return iId == Types.DATE; } public boolean isTime() { return iId == Types.TIME; } public boolean isTimeStamp() { return iId == Types.TIMESTAMP; } public boolean isTemporalType() { return (isDate() || isTime() || isTimeStamp()); } //--------------------------------------------------------------------------- //--- types not simply editable //--------------------------------------------------------------------------- public boolean isBinary() { return iId == Types.BINARY; } public boolean isVarBinary() { return iId == Types.VARBINARY; } public boolean isLongVarBinary() { return iId == Types.LONGVARBINARY; } public boolean isBinaryType() { return isBinary() || isVarBinary() || isLongVarBinary(); } public boolean isLongVarChar() { return iId == Types.LONGVARCHAR; } public boolean isBlob() { return iId == Types.BLOB; } public boolean isClob() { return iId == Types.CLOB; }}//==============================================================================
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -