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

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

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.5-b10 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.01.20 at 02:50:09 PM CET 
//


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 Column complex type. * *

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

 * <complexType name="Column">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <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="column_name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="data_type" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="character_maximum_length" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="numeric_precision" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="numeric_scale" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="ordinal_position" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
 *         <element name="identity_generation" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="is_nullable" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="column_default" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Column", propOrder = { }) @SuppressWarnings({ "all" }) public class Column implements Serializable { private final static long serialVersionUID = 354L; @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 = "column_name", required = true) @XmlJavaTypeAdapter(StringAdapter.class) protected String columnName; @XmlElement(name = "data_type", required = true) @XmlJavaTypeAdapter(StringAdapter.class) protected String dataType; @XmlElement(name = "character_maximum_length") protected Integer characterMaximumLength; @XmlElement(name = "numeric_precision") protected Integer numericPrecision; @XmlElement(name = "numeric_scale") protected Integer numericScale; @XmlElement(name = "ordinal_position") protected Integer ordinalPosition; @XmlElement(name = "identity_generation") @XmlJavaTypeAdapter(StringAdapter.class) protected String identityGeneration; @XmlElement(name = "is_nullable") protected Boolean isNullable; @XmlElement(name = "column_default") @XmlJavaTypeAdapter(StringAdapter.class) protected String columnDefault; /** * 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 columnName property. * * @return * possible object is * {@link String } * */ public String getColumnName() { return columnName; } /** * Sets the value of the columnName property. * * @param value * allowed object is * {@link String } * */ public void setColumnName(String value) { this.columnName = value; } /** * Gets the value of the dataType property. * * @return * possible object is * {@link String } * */ public String getDataType() { return dataType; } /** * Sets the value of the dataType property. * * @param value * allowed object is * {@link String } * */ public void setDataType(String value) { this.dataType = value; } /** * Gets the value of the characterMaximumLength property. * * @return * possible object is * {@link Integer } * */ public Integer getCharacterMaximumLength() { return characterMaximumLength; } /** * Sets the value of the characterMaximumLength property. * * @param value * allowed object is * {@link Integer } * */ public void setCharacterMaximumLength(Integer value) { this.characterMaximumLength = value; } /** * Gets the value of the numericPrecision property. * * @return * possible object is * {@link Integer } * */ public Integer getNumericPrecision() { return numericPrecision; } /** * Sets the value of the numericPrecision property. * * @param value * allowed object is * {@link Integer } * */ public void setNumericPrecision(Integer value) { this.numericPrecision = value; } /** * Gets the value of the numericScale property. * * @return * possible object is * {@link Integer } * */ public Integer getNumericScale() { return numericScale; } /** * Sets the value of the numericScale property. * * @param value * allowed object is * {@link Integer } * */ public void setNumericScale(Integer value) { this.numericScale = value; } /** * Gets the value of the ordinalPosition property. * * @return * possible object is * {@link Integer } * */ public Integer getOrdinalPosition() { return ordinalPosition; } /** * Sets the value of the ordinalPosition property. * * @param value * allowed object is * {@link Integer } * */ public void setOrdinalPosition(Integer value) { this.ordinalPosition = value; } /** * Gets the value of the identityGeneration property. * * @return * possible object is * {@link String } * */ public String getIdentityGeneration() { return identityGeneration; } /** * Sets the value of the identityGeneration property. * * @param value * allowed object is * {@link String } * */ public void setIdentityGeneration(String value) { this.identityGeneration = value; } /** * Gets the value of the isNullable property. * * @return * possible object is * {@link Boolean } * */ public Boolean isIsNullable() { return isNullable; } /** * Sets the value of the isNullable property. * * @param value * allowed object is * {@link Boolean } * */ public void setIsNullable(Boolean value) { this.isNullable = value; } /** * Gets the value of the columnDefault property. * * @return * possible object is * {@link String } * */ public String getColumnDefault() { return columnDefault; } /** * Sets the value of the columnDefault property. * * @param value * allowed object is * {@link String } * */ public void setColumnDefault(String value) { this.columnDefault = value; } public Column withTableCatalog(String value) { setTableCatalog(value); return this; } public Column withTableSchema(String value) { setTableSchema(value); return this; } public Column withTableName(String value) { setTableName(value); return this; } public Column withColumnName(String value) { setColumnName(value); return this; } public Column withDataType(String value) { setDataType(value); return this; } public Column withCharacterMaximumLength(Integer value) { setCharacterMaximumLength(value); return this; } public Column withNumericPrecision(Integer value) { setNumericPrecision(value); return this; } public Column withNumericScale(Integer value) { setNumericScale(value); return this; } public Column withOrdinalPosition(Integer value) { setOrdinalPosition(value); return this; } public Column withIdentityGeneration(String value) { setIdentityGeneration(value); return this; } public Column withIsNullable(Boolean value) { setIsNullable(value); return this; } public Column withColumnDefault(String value) { setColumnDefault(value); return this; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy