org.jaxdb.ddlx_0_4.Table Maven / Gradle / Ivy
Show all versions of sqlx Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2019.07.22 at 07:16:31 AM UTC
//
package org.jaxdb.ddlx_0_4;
import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for table complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="table">
* <complexContent>
* <extension base="{http://www.jaxdb.org/ddlx-0.4.xsd}named">
* <sequence>
* <element name="column" type="{http://www.jaxdb.org/ddlx-0.4.xsd}column" maxOccurs="unbounded" minOccurs="0"/>
* <element name="constraints" type="{http://www.jaxdb.org/ddlx-0.4.xsd}constraints" minOccurs="0"/>
* <element name="triggers" type="{http://www.jaxdb.org/ddlx-0.4.xsd}triggers" minOccurs="0"/>
* <element name="indexes" type="{http://www.jaxdb.org/ddlx-0.4.xsd}indexes" minOccurs="0"/>
* </sequence>
* <attribute name="abstract" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* <attribute name="extends" type="{http://www.jaxdb.org/ddlx-0.4.xsd}name" />
* <attribute name="skip" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "table", propOrder = {
"column",
"constraints",
"triggers",
"indexes"
})
@XmlSeeAlso({
org.jaxdb.sqlx_0_4.Table.class
})
public class Table
extends Named
{
protected List column;
protected Constraints constraints;
protected Triggers triggers;
protected Indexes indexes;
@XmlAttribute(name = "abstract")
protected java.lang.Boolean _abstract;
@XmlAttribute(name = "extends")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
protected String _extends;
@XmlAttribute(name = "skip")
protected java.lang.Boolean skip;
/**
* Gets the value of the column property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the column property.
*
*
* For example, to add a new item, do as follows:
*
* getColumn().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Column }
*
*
*/
public List getColumn() {
if (column == null) {
column = new ArrayList();
}
return this.column;
}
/**
* Gets the value of the constraints property.
*
* @return
* possible object is
* {@link Constraints }
*
*/
public Constraints getConstraints() {
return constraints;
}
/**
* Sets the value of the constraints property.
*
* @param value
* allowed object is
* {@link Constraints }
*
*/
public void setConstraints(Constraints value) {
this.constraints = value;
}
/**
* Gets the value of the triggers property.
*
* @return
* possible object is
* {@link Triggers }
*
*/
public Triggers getTriggers() {
return triggers;
}
/**
* Sets the value of the triggers property.
*
* @param value
* allowed object is
* {@link Triggers }
*
*/
public void setTriggers(Triggers value) {
this.triggers = value;
}
/**
* Gets the value of the indexes property.
*
* @return
* possible object is
* {@link Indexes }
*
*/
public Indexes getIndexes() {
return indexes;
}
/**
* Sets the value of the indexes property.
*
* @param value
* allowed object is
* {@link Indexes }
*
*/
public void setIndexes(Indexes value) {
this.indexes = value;
}
/**
* Gets the value of the abstract property.
*
* @return
* possible object is
* {@link java.lang.Boolean }
*
*/
public java.lang.Boolean getAbstract() {
if (_abstract == null) {
return false;
} else {
return _abstract;
}
}
/**
* Sets the value of the abstract property.
*
* @param value
* allowed object is
* {@link java.lang.Boolean }
*
*/
public void setAbstract(java.lang.Boolean value) {
this._abstract = value;
}
/**
* Gets the value of the extends property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getExtends() {
return _extends;
}
/**
* Sets the value of the extends property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setExtends(String value) {
this._extends = value;
}
/**
* Gets the value of the skip property.
*
* @return
* possible object is
* {@link java.lang.Boolean }
*
*/
public java.lang.Boolean getSkip() {
if (skip == null) {
return false;
} else {
return skip;
}
}
/**
* Sets the value of the skip property.
*
* @param value
* allowed object is
* {@link java.lang.Boolean }
*
*/
public void setSkip(java.lang.Boolean value) {
this.skip = value;
}
}