Package org.hibernate.boot.jaxb.hbm.spi
Class JaxbHbmListIndexType
- java.lang.Object
-
- org.hibernate.boot.jaxb.hbm.spi.JaxbHbmListIndexType
-
- All Implemented Interfaces:
java.io.Serializable
public class JaxbHbmListIndexType extends java.lang.Object implements java.io.SerializableJava class for ListIndexType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ListIndexType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="column" type="{http://www.hibernate.org/xsd/orm/hbm}ColumnType" minOccurs="0"/> </sequence> <attribute name="base" type="{http://www.w3.org/2001/XMLSchema}string" default="0" /> <attribute name="column" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringbaseprotected JaxbHbmColumnTypecolumnprotected java.lang.StringcolumnAttribute
-
Constructor Summary
Constructors Constructor Description JaxbHbmListIndexType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetBase()Gets the value of the base property.JaxbHbmColumnTypegetColumn()Gets the value of the column property.java.lang.StringgetColumnAttribute()Gets the value of the columnAttribute property.voidsetBase(java.lang.String value)Sets the value of the base property.voidsetColumn(JaxbHbmColumnType value)Sets the value of the column property.voidsetColumnAttribute(java.lang.String value)Sets the value of the columnAttribute property.
-
-
-
Field Detail
-
column
protected JaxbHbmColumnType column
-
base
protected java.lang.String base
-
columnAttribute
protected java.lang.String columnAttribute
-
-
Method Detail
-
getColumn
public JaxbHbmColumnType getColumn()
Gets the value of the column property.- Returns:
- possible object is
JaxbHbmColumnType
-
setColumn
public void setColumn(JaxbHbmColumnType value)
Sets the value of the column property.- Parameters:
value- allowed object isJaxbHbmColumnType
-
getBase
public java.lang.String getBase()
Gets the value of the base property.- Returns:
- possible object is
String
-
setBase
public void setBase(java.lang.String value)
Sets the value of the base property.- Parameters:
value- allowed object isString
-
getColumnAttribute
public java.lang.String getColumnAttribute()
Gets the value of the columnAttribute property.- Returns:
- possible object is
String
-
setColumnAttribute
public void setColumnAttribute(java.lang.String value)
Sets the value of the columnAttribute property.- Parameters:
value- allowed object isString
-
-