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 String
getCatalog()
String
getName()
Identifier
getNameIdentifier()
String
getQualifiedName(SqlStringGenerationContext context)
QualifiedTableName
getQualifiedTableName()
String
getQuotedCatalog()
String
getQuotedName()
String
getQuotedName(Dialect dialect)
String
getQuotedSchema()
String
getQuotedSchema(Dialect dialect)
String
getSchema()
boolean
isCatalogQuoted()
boolean
isQuoted()
boolean
isSchemaQuoted()
-
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()
-
-