Package org.hibernate.mapping
Interface UserDefinedType
-
- All Superinterfaces:
Contributable,ContributableDatabaseObject,Exportable,Serializable
- All Known Implementing Classes:
AbstractUserDefinedType,UserDefinedArrayType,UserDefinedObjectType
@Incubating public interface UserDefinedType extends Serializable, ContributableDatabaseObject
A mapping model object which represents a user defined type.- See Also:
UserDefinedObjectType,UserDefinedArrayType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCatalog()StringgetName()IdentifiergetNameIdentifier()StringgetQualifiedName(SqlStringGenerationContext context)QualifiedTableNamegetQualifiedTableName()StringgetQuotedCatalog()StringgetQuotedName()StringgetQuotedName(Dialect dialect)StringgetQuotedSchema()StringgetQuotedSchema(Dialect dialect)StringgetSchema()booleanisCatalogQuoted()booleanisQuoted()booleanisSchemaQuoted()-
Methods inherited from interface org.hibernate.mapping.Contributable
getContributor
-
Methods inherited from interface org.hibernate.boot.model.relational.Exportable
getExportIdentifier
-
-
-
-
Method Detail
-
getQualifiedName
String getQualifiedName(SqlStringGenerationContext context)
-
getName
String getName()
-
getNameIdentifier
Identifier getNameIdentifier()
-
getQuotedName
String getQuotedName()
-
getQualifiedTableName
QualifiedTableName getQualifiedTableName()
-
isQuoted
boolean isQuoted()
-
getSchema
String getSchema()
-
getQuotedSchema
String getQuotedSchema()
-
isSchemaQuoted
boolean isSchemaQuoted()
-
getCatalog
String getCatalog()
-
getQuotedCatalog
String getQuotedCatalog()
-
isCatalogQuoted
boolean isCatalogQuoted()
-
-