Class JaxbIndexImpl
java.lang.Object
org.hibernate.boot.jaxb.mapping.spi.JaxbIndexImpl
- All Implemented Interfaces:
Serializable
@Target({}) @Retention(RUNTIME)
public @interface Index {
String name() default "";
String columnList();
boolean unique() default false;
String options() default "";
}
<p>Java class for index complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<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" />
<attribute name="options" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
}</pre>
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the columnList property.Gets the value of the description property.getName()Gets the value of the name property.Gets the value of the options property.isUnique()Gets the value of the unique property.voidsetColumnList(String value) Sets the value of the columnList property.voidsetDescription(String value) Sets the value of the description property.voidSets the value of the name property.voidsetOptions(String value) Sets the value of the options property.voidSets the value of the unique property.
-
Field Details
-
description
-
name
-
columnList
-
unique
-
options
-
-
Constructor Details
-
JaxbIndexImpl
public JaxbIndexImpl()
-
-
Method Details
-
getDescription
-
setDescription
-
getName
-
setName
-
getColumnList
-
setColumnList
-
isUnique
-
setUnique
-
getOptions
-
setOptions
-