-
- All Implemented Interfaces:
public final class UserDefinedTypeWrapper for results of getUDTs
-
-
Constructor Summary
Constructors Constructor Description UserDefinedType(DatabaseMetaData metadata, ResultSet rs)
-
Method Summary
Modifier and Type Method Description final StringgetCatalog()CatalogSource column: TYPE_CAT final StringgetSchema()SchemaSource column: TYPE_SCHEM final StringgetName()NameSource column: TYPE_NAME final StringgetClassName()Class nameSource column: CLASS_NAME final JDBCTypegetDataType()SQL type, converted to JDBCTypeSource column: DATA_TYPE final StringgetRemarks()RemarksSource column: REMARKS final IntegergetBaseType()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 Booleanequals(Object other)IntegerhashCode()-
-
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
-
-
-
-