类 TypeDefinition
- java.lang.Object
-
- org.hibernate.boot.model.TypeDefinition
-
- 所有已实现的接口:
Serializable
public class TypeDefinition extends Object implements Serializable
Models the information pertaining to a custom type definition supplied by the user. Used to delay instantiation of the actualTypeinstance. Generally speaking this information would come from annotations (TypeDef) or XML mappings. An alternative form of supplying custom types is programmatically via one of:- 作者:
- Steve Ebersole, John Verhaeg
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 TypeDefinition(String name, Class typeImplementorClass, String[] registrationKeys, Map<String,String> parameters)TypeDefinition(String name, Class typeImplementorClass, String[] registrationKeys, Properties parameters)
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 booleanequals(Object o)StringgetName()Map<String,String>getParameters()PropertiesgetParametersAsProperties()String[]getRegistrationKeys()ClassgetTypeImplementorClass()inthashCode()StringtoString()
-
-
-
方法详细资料
-
getName
public String getName()
-
getTypeImplementorClass
public Class getTypeImplementorClass()
-
getRegistrationKeys
public String[] getRegistrationKeys()
-
getParametersAsProperties
public Properties getParametersAsProperties()
-
-