org.jooq.util.xml.jaxb.Index Maven / Gradle / Ivy
package org.jooq.util.xml.jaxb;
import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
import org.jooq.util.jaxb.tools.StringAdapter;
import org.jooq.util.jaxb.tools.XMLAppendable;
import org.jooq.util.jaxb.tools.XMLBuilder;
/**
* 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">
* <all>
* <element name="index_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="index_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="index_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="table_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="table_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="table_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="is_unique" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </all>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Index", propOrder = {
})
@SuppressWarnings({
"all"
})
public class Index implements Serializable, XMLAppendable
{
private final static long serialVersionUID = 31600L;
@XmlElement(name = "index_catalog")
@XmlJavaTypeAdapter(StringAdapter.class)
protected String indexCatalog;
@XmlElement(name = "index_schema")
@XmlJavaTypeAdapter(StringAdapter.class)
protected String indexSchema;
@XmlElement(name = "index_name", required = true)
@XmlJavaTypeAdapter(StringAdapter.class)
protected String indexName;
@XmlElement(name = "table_catalog")
@XmlJavaTypeAdapter(StringAdapter.class)
protected String tableCatalog;
@XmlElement(name = "table_schema")
@XmlJavaTypeAdapter(StringAdapter.class)
protected String tableSchema;
@XmlElement(name = "table_name", required = true)
@XmlJavaTypeAdapter(StringAdapter.class)
protected String tableName;
@XmlElement(name = "is_unique")
protected Boolean isUnique;
@XmlJavaTypeAdapter(StringAdapter.class)
protected String comment;
public String getIndexCatalog() {
return indexCatalog;
}
public void setIndexCatalog(String value) {
this.indexCatalog = value;
}
public String getIndexSchema() {
return indexSchema;
}
public void setIndexSchema(String value) {
this.indexSchema = value;
}
public String getIndexName() {
return indexName;
}
public void setIndexName(String value) {
this.indexName = value;
}
public String getTableCatalog() {
return tableCatalog;
}
public void setTableCatalog(String value) {
this.tableCatalog = value;
}
public String getTableSchema() {
return tableSchema;
}
public void setTableSchema(String value) {
this.tableSchema = value;
}
public String getTableName() {
return tableName;
}
public void setTableName(String value) {
this.tableName = value;
}
/**
* Gets the value of the isUnique property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isIsUnique() {
return isUnique;
}
/**
* Sets the value of the isUnique property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setIsUnique(Boolean value) {
this.isUnique = value;
}
public String getComment() {
return comment;
}
public void setComment(String value) {
this.comment = value;
}
public Index withIndexCatalog(String value) {
setIndexCatalog(value);
return this;
}
public Index withIndexSchema(String value) {
setIndexSchema(value);
return this;
}
public Index withIndexName(String value) {
setIndexName(value);
return this;
}
public Index withTableCatalog(String value) {
setTableCatalog(value);
return this;
}
public Index withTableSchema(String value) {
setTableSchema(value);
return this;
}
public Index withTableName(String value) {
setTableName(value);
return this;
}
public Index withIsUnique(Boolean value) {
setIsUnique(value);
return this;
}
public Index withComment(String value) {
setComment(value);
return this;
}
@Override
public final void appendTo(XMLBuilder builder) {
builder.append("index_catalog", indexCatalog);
builder.append("index_schema", indexSchema);
builder.append("index_name", indexName);
builder.append("table_catalog", tableCatalog);
builder.append("table_schema", tableSchema);
builder.append("table_name", tableName);
builder.append("is_unique", isUnique);
builder.append("comment", comment);
}
@Override
public String toString() {
XMLBuilder builder = XMLBuilder.nonFormatting();
appendTo(builder);
return builder.toString();
}
@Override
public boolean equals(Object that) {
if (this == that) {
return true;
}
if (that == null) {
return false;
}
if (getClass()!= that.getClass()) {
return false;
}
Index other = ((Index) that);
if (indexCatalog == null) {
if (other.indexCatalog!= null) {
return false;
}
} else {
if (!indexCatalog.equals(other.indexCatalog)) {
return false;
}
}
if (indexSchema == null) {
if (other.indexSchema!= null) {
return false;
}
} else {
if (!indexSchema.equals(other.indexSchema)) {
return false;
}
}
if (indexName == null) {
if (other.indexName!= null) {
return false;
}
} else {
if (!indexName.equals(other.indexName)) {
return false;
}
}
if (tableCatalog == null) {
if (other.tableCatalog!= null) {
return false;
}
} else {
if (!tableCatalog.equals(other.tableCatalog)) {
return false;
}
}
if (tableSchema == null) {
if (other.tableSchema!= null) {
return false;
}
} else {
if (!tableSchema.equals(other.tableSchema)) {
return false;
}
}
if (tableName == null) {
if (other.tableName!= null) {
return false;
}
} else {
if (!tableName.equals(other.tableName)) {
return false;
}
}
if (isUnique == null) {
if (other.isUnique!= null) {
return false;
}
} else {
if (!isUnique.equals(other.isUnique)) {
return false;
}
}
if (comment == null) {
if (other.comment!= null) {
return false;
}
} else {
if (!comment.equals(other.comment)) {
return false;
}
}
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = ((prime*result)+((indexCatalog == null)? 0 :indexCatalog.hashCode()));
result = ((prime*result)+((indexSchema == null)? 0 :indexSchema.hashCode()));
result = ((prime*result)+((indexName == null)? 0 :indexName.hashCode()));
result = ((prime*result)+((tableCatalog == null)? 0 :tableCatalog.hashCode()));
result = ((prime*result)+((tableSchema == null)? 0 :tableSchema.hashCode()));
result = ((prime*result)+((tableName == null)? 0 :tableName.hashCode()));
result = ((prime*result)+((isUnique == null)? 0 :isUnique.hashCode()));
result = ((prime*result)+((comment == null)? 0 :comment.hashCode()));
return result;
}
}