![JAR search and dependency download from the Maven repository](/logo.png)
org.jaxdb.ddlx_0_4.Indexes 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.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for indexes complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="indexes">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence maxOccurs="unbounded">
* <element name="index">
* <complexType>
* <complexContent>
* <extension base="{http://www.jaxdb.org/ddlx-0.4.xsd}index">
* <sequence maxOccurs="unbounded">
* <element name="column" type="{http://www.jaxdb.org/ddlx-0.4.xsd}named"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "indexes", propOrder = {
"index"
})
public class Indexes {
@XmlElement(required = true)
protected List index;
/**
* Gets the value of the index 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 index property.
*
*
* For example, to add a new item, do as follows:
*
* getIndex().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Indexes.Index }
*
*
*/
public List getIndex() {
if (index == null) {
index = new ArrayList();
}
return this.index;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <extension base="{http://www.jaxdb.org/ddlx-0.4.xsd}index">
* <sequence maxOccurs="unbounded">
* <element name="column" type="{http://www.jaxdb.org/ddlx-0.4.xsd}named"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"column"
})
public static class Index
extends org.jaxdb.ddlx_0_4.Index
{
@XmlElement(required = true)
protected List column;
/**
* 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 Named }
*
*
*/
public List getColumn() {
if (column == null) {
column = new ArrayList();
}
return this.column;
}
}
}