-
- All Implemented Interfaces:
public final class UserDefinedType
Wrapper for results of getUDTs
-
-
Constructor Summary
Constructors Constructor Description UserDefinedType(DatabaseMetaData metadata, ResultSet rs)
-
Method Summary
Modifier and Type Method Description final String
getCatalog()
CatalogSource column: TYPE_CAT final String
getSchema()
SchemaSource column: TYPE_SCHEM final String
getName()
NameSource column: TYPE_NAME final String
getClassName()
Class nameSource column: CLASS_NAME final JDBCType
getDataType()
SQL type, converted to JDBCTypeSource column: DATA_TYPE final String
getRemarks()
RemarksSource column: REMARKS final Integer
getBaseType()
Base typeSource column: BASE_TYPE final List<Attribute>
getAttributes(String attributeNamePattern)
Get attributesSource: wrapped results of getAttributes filtered to this types's catalog, schema, and name final List<Attribute>
getAttributes()
Get attributesSource: wrapped results of getAttributes filtered to this types's catalog, schema, and name final List<SuperType>
getSuperTypes()
Get super types for this typeSource: wrapped results of getSuperTypes filtered to this type's catalog, schema, and name Boolean
equals(Object other)
Integer
hashCode()
-
-
Constructor Detail
-
UserDefinedType
UserDefinedType(DatabaseMetaData metadata, ResultSet rs)
-
-
Method Detail
-
getCatalog
final String getCatalog()
Catalog
Source column: TYPE_CAT
-
getClassName
final String getClassName()
Class name
Source column: CLASS_NAME
-
getDataType
final JDBCType getDataType()
SQL type, converted to JDBCType
Source column: DATA_TYPE
-
getRemarks
final String getRemarks()
Remarks
Source column: REMARKS
-
getBaseType
final Integer getBaseType()
Base type
Source column: BASE_TYPE
-
getAttributes
@JvmOverloads() final List<Attribute> getAttributes(String attributeNamePattern)
Get attributes
Source: wrapped results of getAttributes filtered to this types's catalog, schema, and name
-
getAttributes
@JvmOverloads() final List<Attribute> getAttributes()
Get attributes
Source: wrapped results of getAttributes filtered to this types's catalog, schema, and name
-
getSuperTypes
final List<SuperType> getSuperTypes()
Get super types for this type
Source: wrapped results of getSuperTypes filtered to this type's catalog, schema, and name
-
-
-
-