接口 Sized
-
-
方法概要
所有方法 实例方法 抽象方法 修饰符和类型 方法 说明 Size[]defaultSizes()Defines the column sizes to use according to this type if the user did not explicitly say (and if nodictatedSizes()were given).Size[]dictatedSizes()Return the column sizes dictated by this type.
-
-
-
方法详细资料
-
dictatedSizes
Size[] dictatedSizes()
Return the column sizes dictated by this type. For example, the mapping for achar/Characterwould have a dictated length limit of 1; for a string-basedUUIDwould have a size limit of 36; etc.- 返回:
- The dictated sizes.
- 另请参阅:
Type.dictatedSizes(org.hibernate.engine.spi.Mapping)
-
defaultSizes
Size[] defaultSizes()
Defines the column sizes to use according to this type if the user did not explicitly say (and if nodictatedSizes()were given).- 返回:
- The default sizes.
- 另请参阅:
Type.defaultSizes(org.hibernate.engine.spi.Mapping)
-
-