Package org.hibernate.tool.orm.jbt.wrp
Interface ColumnWrapper
-
- All Superinterfaces:
Wrapper
- All Known Implementing Classes:
DelegatingColumnWrapperImpl
public interface ColumnWrapper extends Wrapper
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetDefaultLength()intgetDefaultPrecision()intgetDefaultScale()LonggetLength()StringgetName()IntegergetPrecision()IntegergetScale()StringgetSqlType()StringgetSqlType(org.hibernate.cfg.Configuration configuration)IntegergetSqlTypeCode()org.hibernate.mapping.ValuegetValue()org.hibernate.mapping.ColumngetWrappedObject()booleanisNullable()booleanisUnique()voidsetSqlType(String sqlType)
-
-
-
Method Detail
-
getWrappedObject
org.hibernate.mapping.Column getWrappedObject()
- Specified by:
getWrappedObjectin interfaceWrapper
-
getName
String getName()
-
getSqlTypeCode
Integer getSqlTypeCode()
-
getSqlType
String getSqlType()
-
getLength
Long getLength()
-
getDefaultLength
int getDefaultLength()
-
getPrecision
Integer getPrecision()
-
getDefaultPrecision
int getDefaultPrecision()
-
getScale
Integer getScale()
-
getDefaultScale
int getDefaultScale()
-
isNullable
boolean isNullable()
-
getValue
org.hibernate.mapping.Value getValue()
-
isUnique
boolean isUnique()
-
getSqlType
String getSqlType(org.hibernate.cfg.Configuration configuration)
-
setSqlType
void setSqlType(String sqlType)
-
-