类 JaxbHbmToolingHintType
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmToolingHintType
-
- 所有已实现的接口:
Serializable
public class JaxbHbmToolingHintType extends Object implements Serializable
is used to assign meta-level attributes to a class or property. Is currently used by tooling as a placeholder for values that is not directly related to OR mappings. Example: the-hint-value Java class for ToolingHintType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ToolingHintType"> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>string"> <attribute name="attribute" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="inherit" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> </extension> </simpleContent> </complexType>- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 JaxbHbmToolingHintType()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 StringgetName()Gets the value of the name property.StringgetValue()Gets the value of the value property.booleanisInheritable()Gets the value of the inheritable property.voidsetInheritable(Boolean value)Sets the value of the inheritable property.voidsetName(String value)Sets the value of the name property.voidsetValue(String value)Sets the value of the value property.
-
-
-
方法详细资料
-
getValue
public String getValue()
Gets the value of the value property.- 返回:
- possible object is
String
-
setValue
public void setValue(String value)
Sets the value of the value property.- 参数:
value- allowed object isString
-
setName
public void setName(String value)
Sets the value of the name property.- 参数:
value- allowed object isString
-
isInheritable
public boolean isInheritable()
Gets the value of the inheritable property.- 返回:
- possible object is
Boolean
-
-