package org.jooq.util.xml.jaxb;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import javax.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 KeyColumnUsage complex type.

The following schema fragment specifies the expected content contained within this class.

<complexType name="KeyColumnUsage">
  <complexContent>
    <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
      <all>
        <element name="column_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
        <element name="constraint_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
        <element name="constraint_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
        <element name="constraint_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
        <element name="ordinal_position" type="{http://www.w3.org/2001/XMLSchema}int"/>
        <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"/>
      </all>
    </restriction>
  </complexContent>
</complexType>
/** * <p>Java class for KeyColumnUsage complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * &lt;complexType name="KeyColumnUsage"&gt; * &lt;complexContent&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt; * &lt;all&gt; * &lt;element name="column_name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt; * &lt;element name="constraint_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt; * &lt;element name="constraint_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt; * &lt;element name="constraint_name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt; * &lt;element name="ordinal_position" type="{http://www.w3.org/2001/XMLSchema}int"/&gt; * &lt;element name="table_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt; * &lt;element name="table_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt; * &lt;element name="table_name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt; * &lt;/all&gt; * &lt;/restriction&gt; * &lt;/complexContent&gt; * &lt;/complexType&gt; * </pre> * * */
@XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "KeyColumnUsage", propOrder = { }) @SuppressWarnings({ "all" }) public class KeyColumnUsage implements Serializable, XMLAppendable { private final static long serialVersionUID = 31400L; @XmlElement(name = "column_name", required = true) @XmlJavaTypeAdapter(StringAdapter.class) protected String columnName; @XmlElement(name = "constraint_catalog") @XmlJavaTypeAdapter(StringAdapter.class) protected String constraintCatalog; @XmlElement(name = "constraint_schema") @XmlJavaTypeAdapter(StringAdapter.class) protected String constraintSchema; @XmlElement(name = "constraint_name", required = true) @XmlJavaTypeAdapter(StringAdapter.class) protected String constraintName; @XmlElement(name = "ordinal_position") protected int ordinalPosition; @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; public String getColumnName() { return columnName; } public void setColumnName(String value) { this.columnName = value; } public String getConstraintCatalog() { return constraintCatalog; } public void setConstraintCatalog(String value) { this.constraintCatalog = value; } public String getConstraintSchema() { return constraintSchema; } public void setConstraintSchema(String value) { this.constraintSchema = value; } public String getConstraintName() { return constraintName; } public void setConstraintName(String value) { this.constraintName = value; } public int getOrdinalPosition() { return ordinalPosition; } public void setOrdinalPosition(int value) { this.ordinalPosition = 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; } public KeyColumnUsage withColumnName(String value) { setColumnName(value); return this; } public KeyColumnUsage withConstraintCatalog(String value) { setConstraintCatalog(value); return this; } public KeyColumnUsage withConstraintSchema(String value) { setConstraintSchema(value); return this; } public KeyColumnUsage withConstraintName(String value) { setConstraintName(value); return this; } public KeyColumnUsage withOrdinalPosition(int value) { setOrdinalPosition(value); return this; } public KeyColumnUsage withTableCatalog(String value) { setTableCatalog(value); return this; } public KeyColumnUsage withTableSchema(String value) { setTableSchema(value); return this; } public KeyColumnUsage withTableName(String value) { setTableName(value); return this; } @Override public final void appendTo(XMLBuilder builder) { builder.append("column_name", columnName); builder.append("constraint_catalog", constraintCatalog); builder.append("constraint_schema", constraintSchema); builder.append("constraint_name", constraintName); builder.append("ordinal_position", ordinalPosition); builder.append("table_catalog", tableCatalog); builder.append("table_schema", tableSchema); builder.append("table_name", tableName); } @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; } KeyColumnUsage other = ((KeyColumnUsage) that); if (columnName == null) { if (other.columnName!= null) { return false; } } else { if (!columnName.equals(other.columnName)) { return false; } } if (constraintCatalog == null) { if (other.constraintCatalog!= null) { return false; } } else { if (!constraintCatalog.equals(other.constraintCatalog)) { return false; } } if (constraintSchema == null) { if (other.constraintSchema!= null) { return false; } } else { if (!constraintSchema.equals(other.constraintSchema)) { return false; } } if (constraintName == null) { if (other.constraintName!= null) { return false; } } else { if (!constraintName.equals(other.constraintName)) { return false; } } if (ordinalPosition!= other.ordinalPosition) { 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; } } return true; } @Override public int hashCode() { final int prime = 31; int result = 1; result = ((prime*result)+((columnName == null)? 0 :columnName.hashCode())); result = ((prime*result)+((constraintCatalog == null)? 0 :constraintCatalog.hashCode())); result = ((prime*result)+((constraintSchema == null)? 0 :constraintSchema.hashCode())); result = ((prime*result)+((constraintName == null)? 0 :constraintName.hashCode())); result = ((prime*result)+ ordinalPosition); result = ((prime*result)+((tableCatalog == null)? 0 :tableCatalog.hashCode())); result = ((prime*result)+((tableSchema == null)? 0 :tableSchema.hashCode())); result = ((prime*result)+((tableName == null)? 0 :tableName.hashCode())); return result; } }