public class Index extends Object
Java class for index complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="index">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://plasma.org/text/ddl}on" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="unique" type="{http://www.w3.org/2001/XMLSchema}boolean" />
<attribute name="column" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
column |
protected String |
name |
protected List<On> |
ons |
protected Boolean |
unique |
| Constructor and Description |
|---|
Index() |
| Modifier and Type | Method and Description |
|---|---|
String |
getColumn()
Gets the value of the column property.
|
String |
getName()
Gets the value of the name property.
|
List<On> |
getOns()
Gets the value of the ons property.
|
Boolean |
isUnique()
Gets the value of the unique property.
|
void |
setColumn(String value)
Sets the value of the column property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setUnique(Boolean value)
Sets the value of the unique property.
|
protected String name
protected Boolean unique
protected String column
public List<On> getOns()
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 ons property.
For example, to add a new item, do as follows:
getOns().add(newItem);
Objects of the following type(s) are allowed in the list
On
public String getName()
Stringpublic void setName(String value)
value - allowed object is
Stringpublic Boolean isUnique()
Booleanpublic void setUnique(Boolean value)
value - allowed object is
Booleanpublic String getColumn()
StringCopyright © 2017. All rights reserved.