类 JaxbHbmIndexManyToAnyType
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmIndexManyToAnyType
-
- 所有已实现的接口:
Serializable
public class JaxbHbmIndexManyToAnyType extends Object implements Serializable
Java class for index-many-to-any-type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="index-many-to-any-type"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="column" type="{http://www.hibernate.org/xsd/orm/hbm}ColumnType" maxOccurs="unbounded" minOccurs="2"/> </sequence> <attribute name="id-type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="meta-type" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 JaxbHbmIndexManyToAnyType()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 List<JaxbHbmColumnType>getColumn()Gets the value of the column property.StringgetIdType()Gets the value of the idType property.StringgetMetaType()Gets the value of the metaType property.voidsetIdType(String value)Sets the value of the idType property.voidsetMetaType(String value)Sets the value of the metaType property.
-
-
-
字段详细资料
-
column
protected List<JaxbHbmColumnType> column
-
idType
protected String idType
-
metaType
protected String metaType
-
-
方法详细资料
-
getColumn
public List<JaxbHbmColumnType> getColumn()
Gets the value of the column property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the column property.For example, to add a new item, do as follows:
getColumn().add(newItem);Objects of the following type(s) are allowed in the list
JaxbHbmColumnType
-
getIdType
public String getIdType()
Gets the value of the idType property.- 返回:
- possible object is
String
-
setIdType
public void setIdType(String value)
Sets the value of the idType property.- 参数:
value- allowed object isString
-
getMetaType
public String getMetaType()
Gets the value of the metaType property.- 返回:
- possible object is
String
-
-