Package org.hibernate.boot.jaxb.mapping
Class JaxbIndex
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.JaxbIndex
-
- All Implemented Interfaces:
Serializable
public class JaxbIndex extends Object implements Serializable
See `jakarta.persistence.Index`Java class for index complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="index"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="column-list" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="unique" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
columnList
protected String
description
protected String
name
protected Boolean
unique
-
Constructor Summary
Constructors Constructor Description JaxbIndex()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getColumnList()
Gets the value of the columnList property.String
getDescription()
Gets the value of the description property.String
getName()
Gets the value of the name property.Boolean
isUnique()
Gets the value of the unique property.void
setColumnList(String value)
Sets the value of the columnList property.void
setDescription(String value)
Sets the value of the description property.void
setName(String value)
Sets the value of the name property.void
setUnique(Boolean value)
Sets the value of the unique property.
-
-
-
Method Detail
-
getDescription
public String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(String value)
Sets the value of the description property.- Parameters:
value
- allowed object isString
-
getName
public String getName()
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
public void setName(String value)
Sets the value of the name property.- Parameters:
value
- allowed object isString
-
getColumnList
public String getColumnList()
Gets the value of the columnList property.- Returns:
- possible object is
String
-
setColumnList
public void setColumnList(String value)
Sets the value of the columnList property.- Parameters:
value
- allowed object isString
-
isUnique
public Boolean isUnique()
Gets the value of the unique property.- Returns:
- possible object is
Boolean
-
-