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

org.plasma.text.ddl.Column Maven / Gradle / Ivy

There is a newer version: 2.2.1
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.09.11 at 01:59:49 PM MST 
//


package org.plasma.text.ddl;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

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">
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="type" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="nullable" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="size" use="required" type="{http://www.w3.org/2001/XMLSchema}long" />
 *       <attribute name="decimal-digits" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "column") @XmlRootElement(name = "column") public class Column { @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "type", required = true) protected String type; @XmlAttribute(name = "nullable") protected Boolean nullable; @XmlAttribute(name = "size", required = true) protected long size; @XmlAttribute(name = "decimal-digits") protected String decimalDigits; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link String } * */ public String getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link String } * */ public void setType(String value) { this.type = value; } /** * Gets the value of the nullable property. * * @return * possible object is * {@link Boolean } * */ public Boolean isNullable() { return nullable; } /** * Sets the value of the nullable property. * * @param value * allowed object is * {@link Boolean } * */ public void setNullable(Boolean value) { this.nullable = value; } /** * Gets the value of the size property. * */ public long getSize() { return size; } /** * Sets the value of the size property. * */ public void setSize(long value) { this.size = value; } /** * Gets the value of the decimalDigits property. * * @return * possible object is * {@link String } * */ public String getDecimalDigits() { return decimalDigits; } /** * Sets the value of the decimalDigits property. * * @param value * allowed object is * {@link String } * */ public void setDecimalDigits(String value) { this.decimalDigits = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy