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

org.hibernate.internal.jaxb.mapping.hbm.JaxbColumnElement Maven / Gradle / Ivy

There is a newer version: 6.5.0.CR2
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-520 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.01.06 at 12:10:24 PM PST 
//


package org.hibernate.internal.jaxb.mapping.hbm;

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


/**
 * 

Java class for column-element complex type. * *

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

 * <complexType name="column-element">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="check" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="default" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="index" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="length" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="not-null" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="precision" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="read" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="scale" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="sql-type" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="unique" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="unique-key" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="write" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "column-element", propOrder = { "comment" }) public class JaxbColumnElement { protected String comment; @XmlAttribute protected String check; @XmlAttribute(name = "default") protected String _default; @XmlAttribute protected String index; @XmlAttribute protected String length; @XmlAttribute(required = true) protected String name; @XmlAttribute(name = "not-null") protected Boolean notNull; @XmlAttribute protected String precision; @XmlAttribute protected String read; @XmlAttribute protected String scale; @XmlAttribute(name = "sql-type") protected String sqlType; @XmlAttribute protected Boolean unique; @XmlAttribute(name = "unique-key") protected String uniqueKey; @XmlAttribute protected String write; /** * Gets the value of the comment property. * * @return * possible object is * {@link String } * */ public String getComment() { return comment; } /** * Sets the value of the comment property. * * @param value * allowed object is * {@link String } * */ public void setComment(String value) { this.comment = value; } /** * Gets the value of the check property. * * @return * possible object is * {@link String } * */ public String getCheck() { return check; } /** * Sets the value of the check property. * * @param value * allowed object is * {@link String } * */ public void setCheck(String value) { this.check = value; } /** * Gets the value of the default property. * * @return * possible object is * {@link String } * */ public String getDefault() { return _default; } /** * Sets the value of the default property. * * @param value * allowed object is * {@link String } * */ public void setDefault(String value) { this._default = value; } /** * Gets the value of the index property. * * @return * possible object is * {@link String } * */ public String getIndex() { return index; } /** * Sets the value of the index property. * * @param value * allowed object is * {@link String } * */ public void setIndex(String value) { this.index = value; } /** * Gets the value of the length property. * * @return * possible object is * {@link String } * */ public String getLength() { return length; } /** * Sets the value of the length property. * * @param value * allowed object is * {@link String } * */ public void setLength(String value) { this.length = value; } /** * 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 notNull property. * * @return * possible object is * {@link Boolean } * */ public Boolean isNotNull() { return notNull; } /** * Sets the value of the notNull property. * * @param value * allowed object is * {@link Boolean } * */ public void setNotNull(Boolean value) { this.notNull = value; } /** * Gets the value of the precision property. * * @return * possible object is * {@link String } * */ public String getPrecision() { return precision; } /** * Sets the value of the precision property. * * @param value * allowed object is * {@link String } * */ public void setPrecision(String value) { this.precision = value; } /** * Gets the value of the read property. * * @return * possible object is * {@link String } * */ public String getRead() { return read; } /** * Sets the value of the read property. * * @param value * allowed object is * {@link String } * */ public void setRead(String value) { this.read = value; } /** * Gets the value of the scale property. * * @return * possible object is * {@link String } * */ public String getScale() { return scale; } /** * Sets the value of the scale property. * * @param value * allowed object is * {@link String } * */ public void setScale(String value) { this.scale = value; } /** * Gets the value of the sqlType property. * * @return * possible object is * {@link String } * */ public String getSqlType() { return sqlType; } /** * Sets the value of the sqlType property. * * @param value * allowed object is * {@link String } * */ public void setSqlType(String value) { this.sqlType = value; } /** * Gets the value of the unique property. * * @return * possible object is * {@link Boolean } * */ public Boolean isUnique() { return unique; } /** * Sets the value of the unique property. * * @param value * allowed object is * {@link Boolean } * */ public void setUnique(Boolean value) { this.unique = value; } /** * Gets the value of the uniqueKey property. * * @return * possible object is * {@link String } * */ public String getUniqueKey() { return uniqueKey; } /** * Sets the value of the uniqueKey property. * * @param value * allowed object is * {@link String } * */ public void setUniqueKey(String value) { this.uniqueKey = value; } /** * Gets the value of the write property. * * @return * possible object is * {@link String } * */ public String getWrite() { return write; } /** * Sets the value of the write property. * * @param value * allowed object is * {@link String } * */ public void setWrite(String value) { this.write = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy