类 JaxbHbmEntityBaseDefinition
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmToolingHintContainer
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmEntityBaseDefinition
-
- 所有已实现的接口:
Serializable,EntityInfo,ToolingHintContainer
public abstract class JaxbHbmEntityBaseDefinition extends JaxbHbmToolingHintContainer implements Serializable, EntityInfo
Java class for EntityBaseDefinition complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="EntityBaseDefinition"> <complexContent> <extension base="{http://www.hibernate.org/xsd/orm/hbm}ToolingHintContainer"> <attribute name="name" type="{http://www.hibernate.org/xsd/orm/hbm}ClassNameType" /> <attribute name="entity-name" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="abstract" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="lazy" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="proxy" type="{http://www.hibernate.org/xsd/orm/hbm}ClassNameType" /> <attribute name="batch-size" type="{http://www.w3.org/2001/XMLSchema}int" default="-1" /> <attribute name="dynamic-insert" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="dynamic-update" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="select-before-update" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="node" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="persister" type="{http://www.hibernate.org/xsd/orm/hbm}ClassNameType" /> </extension> </complexContent> </complexType>- 另请参阅:
- 序列化表格
-
-
字段概要
字段 修饰符和类型 字段 说明 protected Boolean_abstractprotected IntegerbatchSizeprotected BooleandynamicInsertprotected BooleandynamicUpdateprotected StringentityNameprotected Booleanlazyprotected Stringnameprotected Stringnodeprotected Stringpersisterprotected Stringproxyprotected BooleanselectBeforeUpdate-
从类继承的字段 org.hibernate.boot.jaxb.hbm.spi.JaxbHbmToolingHintContainer
toolingHints
-
-
构造器概要
构造器 构造器 说明 JaxbHbmEntityBaseDefinition()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 intgetBatchSize()Gets the value of the batchSize property.StringgetEntityName()Gets the value of the entityName property.StringgetName()Gets the value of the name property.StringgetNode()Gets the value of the node property.StringgetPersister()Gets the value of the persister property.StringgetProxy()Gets the value of the proxy property.BooleanisAbstract()Gets the value of the abstract property.booleanisDynamicInsert()Gets the value of the dynamicInsert property.booleanisDynamicUpdate()Gets the value of the dynamicUpdate property.BooleanisLazy()Gets the value of the lazy property.booleanisSelectBeforeUpdate()Gets the value of the selectBeforeUpdate property.voidsetAbstract(Boolean value)Sets the value of the abstract property.voidsetBatchSize(Integer value)Sets the value of the batchSize property.voidsetDynamicInsert(Boolean value)Sets the value of the dynamicInsert property.voidsetDynamicUpdate(Boolean value)Sets the value of the dynamicUpdate property.voidsetEntityName(String value)Sets the value of the entityName property.voidsetLazy(Boolean value)Sets the value of the lazy property.voidsetName(String value)Sets the value of the name property.voidsetNode(String value)Sets the value of the node property.voidsetPersister(String value)Sets the value of the persister property.voidsetProxy(String value)Sets the value of the proxy property.voidsetSelectBeforeUpdate(Boolean value)Sets the value of the selectBeforeUpdate property.-
从类继承的方法 org.hibernate.boot.jaxb.hbm.spi.JaxbHbmToolingHintContainer
getToolingHints
-
从类继承的方法 java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
从接口继承的方法 org.hibernate.boot.jaxb.hbm.spi.EntityInfo
getAttributes, getFetchProfile, getLoader, getQuery, getResultset, getSqlDelete, getSqlInsert, getSqlQuery, getSqlUpdate, getSynchronize, getTuplizer
-
从接口继承的方法 org.hibernate.boot.jaxb.hbm.spi.ToolingHintContainer
getToolingHints
-
-
-
-
字段详细资料
-
name
protected String name
-
entityName
protected String entityName
-
_abstract
protected Boolean _abstract
-
lazy
protected Boolean lazy
-
proxy
protected String proxy
-
batchSize
protected Integer batchSize
-
dynamicInsert
protected Boolean dynamicInsert
-
dynamicUpdate
protected Boolean dynamicUpdate
-
selectBeforeUpdate
protected Boolean selectBeforeUpdate
-
node
protected String node
-
persister
protected String persister
-
-
方法详细资料
-
getName
public String getName()
Gets the value of the name property.- 指定者:
getName在接口中EntityInfo- 返回:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- 参数:
value- allowed object isString
-
getEntityName
public String getEntityName()
Gets the value of the entityName property.- 指定者:
getEntityName在接口中EntityInfo- 返回:
- possible object is
String
-
setEntityName
public void setEntityName(String value)
Sets the value of the entityName property.- 参数:
value- allowed object isString
-
isAbstract
public Boolean isAbstract()
Gets the value of the abstract property.- 指定者:
isAbstract在接口中EntityInfo- 返回:
- possible object is
Boolean
-
setAbstract
public void setAbstract(Boolean value)
Sets the value of the abstract property.- 参数:
value- allowed object isBoolean
-
isLazy
public Boolean isLazy()
Gets the value of the lazy property.- 指定者:
isLazy在接口中EntityInfo- 返回:
- possible object is
Boolean
-
setLazy
public void setLazy(Boolean value)
Sets the value of the lazy property.- 参数:
value- allowed object isBoolean
-
getProxy
public String getProxy()
Gets the value of the proxy property.- 指定者:
getProxy在接口中EntityInfo- 返回:
- possible object is
String
-
setProxy
public void setProxy(String value)
Sets the value of the proxy property.- 参数:
value- allowed object isString
-
getBatchSize
public int getBatchSize()
Gets the value of the batchSize property.- 指定者:
getBatchSize在接口中EntityInfo- 返回:
- possible object is
Integer
-
setBatchSize
public void setBatchSize(Integer value)
Sets the value of the batchSize property.- 参数:
value- allowed object isInteger
-
isDynamicInsert
public boolean isDynamicInsert()
Gets the value of the dynamicInsert property.- 指定者:
isDynamicInsert在接口中EntityInfo- 返回:
- possible object is
Boolean
-
setDynamicInsert
public void setDynamicInsert(Boolean value)
Sets the value of the dynamicInsert property.- 参数:
value- allowed object isBoolean
-
isDynamicUpdate
public boolean isDynamicUpdate()
Gets the value of the dynamicUpdate property.- 指定者:
isDynamicUpdate在接口中EntityInfo- 返回:
- possible object is
Boolean
-
setDynamicUpdate
public void setDynamicUpdate(Boolean value)
Sets the value of the dynamicUpdate property.- 参数:
value- allowed object isBoolean
-
isSelectBeforeUpdate
public boolean isSelectBeforeUpdate()
Gets the value of the selectBeforeUpdate property.- 指定者:
isSelectBeforeUpdate在接口中EntityInfo- 返回:
- possible object is
Boolean
-
setSelectBeforeUpdate
public void setSelectBeforeUpdate(Boolean value)
Sets the value of the selectBeforeUpdate property.- 参数:
value- allowed object isBoolean
-
setNode
public void setNode(String value)
Sets the value of the node property.- 参数:
value- allowed object isString
-
getPersister
public String getPersister()
Gets the value of the persister property.- 指定者:
getPersister在接口中EntityInfo- 返回:
- possible object is
String
-
-