- All Implemented Interfaces:
- Serializable,- Comparable<JDBCType>,- Constable,- SQLType
public enum JDBCType extends Enum<JDBCType> implements SQLType
Defines the constants that are used to identify generic SQL types, called JDBC types.
- Since:
- 1.8
- See Also:
- SQLType
- 
Nested Class Summary
- 
Enum Constant SummaryEnum Constants Enum Constant Description ARRAYIdentifies the generic SQL typeARRAY.BIGINTIdentifies the generic SQL typeBIGINT.BINARYIdentifies the generic SQL typeBINARY.BITIdentifies the generic SQL typeBIT.BLOBIdentifies the generic SQL typeBLOB.BOOLEANIdentifies the generic SQL typeBOOLEAN.CHARIdentifies the generic SQL typeCHAR.CLOBIdentifies the generic SQL typeCLOB.DATALINKIdentifies the generic SQL typeDATALINK.DATEIdentifies the generic SQL typeDATE.DECIMALIdentifies the generic SQL typeDECIMAL.DISTINCTIdentifies the generic SQL typeDISTINCT.DOUBLEIdentifies the generic SQL typeDOUBLE.FLOATIdentifies the generic SQL typeFLOAT.INTEGERIdentifies the generic SQL typeINTEGER.JAVA_OBJECTIndicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.LONGNVARCHARIdentifies the generic SQL typeLONGNVARCHAR.LONGVARBINARYIdentifies the generic SQL typeLONGVARBINARY.LONGVARCHARIdentifies the generic SQL typeLONGVARCHAR.NCHARIdentifies the generic SQL typeNCHAR.NCLOBIdentifies the generic SQL typeNCLOB.NULLIdentifies the generic SQL valueNULL.NUMERICIdentifies the generic SQL typeNUMERIC.NVARCHARIdentifies the generic SQL typeNVARCHAR.OTHERIndicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.REALIdentifies the generic SQL typeREAL.REFIdentifies the generic SQL typeREF.REF_CURSORIdentifies the generic SQL typeREF_CURSOR.ROWIDIdentifies the SQL typeROWID.SMALLINTIdentifies the generic SQL typeSMALLINT.SQLXMLIdentifies the generic SQL typeSQLXML.STRUCTIdentifies the generic SQL typeSTRUCT.TIMEIdentifies the generic SQL typeTIME.TIME_WITH_TIMEZONEIdentifies the generic SQL typeTIME_WITH_TIMEZONE.TIMESTAMPIdentifies the generic SQL typeTIMESTAMP.TIMESTAMP_WITH_TIMEZONEIdentifies the generic SQL typeTIMESTAMP_WITH_TIMEZONE.TINYINTIdentifies the generic SQL typeTINYINT.VARBINARYIdentifies the generic SQL typeVARBINARY.VARCHARIdentifies the generic SQL typeVARCHAR.
- 
Method SummaryModifier and Type Method Description StringgetName()Returns theSQLTypename that represents a SQL data type.StringgetVendor()Returns the name of the vendor that supports this data type.IntegergetVendorTypeNumber()Returns the vendor specific type number for the data type.static JDBCTypevalueOf(int type)Returns theJDBCTypethat corresponds to the specifiedTypesvaluestatic JDBCTypevalueOf(String name)Returns the enum constant of this type with the specified name.static JDBCType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
BITIdentifies the generic SQL typeBIT.
- 
TINYINTIdentifies the generic SQL typeTINYINT.
- 
SMALLINTIdentifies the generic SQL typeSMALLINT.
- 
INTEGERIdentifies the generic SQL typeINTEGER.
- 
BIGINTIdentifies the generic SQL typeBIGINT.
- 
FLOATIdentifies the generic SQL typeFLOAT.
- 
REALIdentifies the generic SQL typeREAL.
- 
DOUBLEIdentifies the generic SQL typeDOUBLE.
- 
NUMERICIdentifies the generic SQL typeNUMERIC.
- 
DECIMALIdentifies the generic SQL typeDECIMAL.
- 
CHARIdentifies the generic SQL typeCHAR.
- 
VARCHARIdentifies the generic SQL typeVARCHAR.
- 
LONGVARCHARIdentifies the generic SQL typeLONGVARCHAR.
- 
DATEIdentifies the generic SQL typeDATE.
- 
TIMEIdentifies the generic SQL typeTIME.
- 
TIMESTAMPIdentifies the generic SQL typeTIMESTAMP.
- 
BINARYIdentifies the generic SQL typeBINARY.
- 
VARBINARYIdentifies the generic SQL typeVARBINARY.
- 
LONGVARBINARYIdentifies the generic SQL typeLONGVARBINARY.
- 
NULLIdentifies the generic SQL valueNULL.
- 
OTHERIndicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.
- 
JAVA_OBJECTIndicates that the SQL type is database-specific and gets mapped to a Java object that can be accessed via the methods getObject and setObject.
- 
DISTINCTIdentifies the generic SQL typeDISTINCT.
- 
STRUCTIdentifies the generic SQL typeSTRUCT.
- 
ARRAYIdentifies the generic SQL typeARRAY.
- 
BLOBIdentifies the generic SQL typeBLOB.
- 
CLOBIdentifies the generic SQL typeCLOB.
- 
REFIdentifies the generic SQL typeREF.
- 
DATALINKIdentifies the generic SQL typeDATALINK.
- 
BOOLEANIdentifies the generic SQL typeBOOLEAN.
- 
ROWIDIdentifies the SQL typeROWID.
- 
NCHARIdentifies the generic SQL typeNCHAR.
- 
NVARCHARIdentifies the generic SQL typeNVARCHAR.
- 
LONGNVARCHARIdentifies the generic SQL typeLONGNVARCHAR.
- 
NCLOBIdentifies the generic SQL typeNCLOB.
- 
SQLXMLIdentifies the generic SQL typeSQLXML.
- 
REF_CURSORIdentifies the generic SQL typeREF_CURSOR.
- 
TIME_WITH_TIMEZONEIdentifies the generic SQL typeTIME_WITH_TIMEZONE.
- 
TIMESTAMP_WITH_TIMEZONEIdentifies the generic SQL typeTIMESTAMP_WITH_TIMEZONE.
 
- 
- 
Method Details- 
valuesReturns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
 
- 
valueOfReturns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
- name- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
getNameReturns theSQLTypename that represents a SQL data type.
- 
getVendorReturns the name of the vendor that supports this data type.
- 
getVendorTypeNumberReturns the vendor specific type number for the data type.- Specified by:
- getVendorTypeNumberin interface- SQLType
- Returns:
- An Integer representing the data type. For JDBCType, the value will be the same value as inTypesfor the data type.
 
- 
valueOfReturns theJDBCTypethat corresponds to the specifiedTypesvalue- Parameters:
- type-- Typesvalue
- Returns:
- The JDBCTypeconstant
- Throws:
- IllegalArgumentException- if this enum type has no constant with the specified- Typesvalue
- See Also:
- Types
 
 
-