All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.util.xml.jaxb.Index Maven / Gradle / Ivy

There is a newer version: 3.19.9
Show newest version








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;


/**
 * 

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"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Index", propOrder = { }) @SuppressWarnings({ "all" }) public class Index implements Serializable { private final static long serialVersionUID = 31000L; @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; /** * Gets the value of the indexCatalog property. * * @return * possible object is * {@link String } * */ public String getIndexCatalog() { return indexCatalog; } /** * Sets the value of the indexCatalog property. * * @param value * allowed object is * {@link String } * */ public void setIndexCatalog(String value) { this.indexCatalog = value; } /** * Gets the value of the indexSchema property. * * @return * possible object is * {@link String } * */ public String getIndexSchema() { return indexSchema; } /** * Sets the value of the indexSchema property. * * @param value * allowed object is * {@link String } * */ public void setIndexSchema(String value) { this.indexSchema = value; } /** * Gets the value of the indexName property. * * @return * possible object is * {@link String } * */ public String getIndexName() { return indexName; } /** * Sets the value of the indexName property. * * @param value * allowed object is * {@link String } * */ public void setIndexName(String value) { this.indexName = value; } /** * Gets the value of the tableCatalog property. * * @return * possible object is * {@link String } * */ public String getTableCatalog() { return tableCatalog; } /** * Sets the value of the tableCatalog property. * * @param value * allowed object is * {@link String } * */ public void setTableCatalog(String value) { this.tableCatalog = value; } /** * Gets the value of the tableSchema property. * * @return * possible object is * {@link String } * */ public String getTableSchema() { return tableSchema; } /** * Sets the value of the tableSchema property. * * @param value * allowed object is * {@link String } * */ public void setTableSchema(String value) { this.tableSchema = value; } /** * Gets the value of the tableName property. * * @return * possible object is * {@link String } * */ public String getTableName() { return tableName; } /** * Sets the value of the tableName property. * * @param value * allowed object is * {@link String } * */ 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy