public class Table extends Object
Java class for table complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="table">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element ref="{http://plasma.org/text/ddl}pk" minOccurs="0"/>
<element ref="{http://plasma.org/text/ddl}column" maxOccurs="unbounded"/>
<element ref="{http://plasma.org/text/ddl}fk" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://plasma.org/text/ddl}index" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://plasma.org/text/ddl}behavior" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://plasma.org/text/ddl}unique" maxOccurs="unbounded" minOccurs="0"/>
<element ref="{http://plasma.org/text/ddl}check" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<Behavior> |
behaviors |
protected List<Check> |
checks |
protected List<Column> |
columns |
protected List<Fk> |
fks |
protected List<Index> |
indices |
protected String |
name |
protected Pk |
pk |
protected List<Unique> |
uniques |
| Constructor and Description |
|---|
Table() |
| Modifier and Type | Method and Description |
|---|---|
List<Behavior> |
getBehaviors()
Gets the value of the behaviors property.
|
List<Check> |
getChecks()
Gets the value of the checks property.
|
List<Column> |
getColumns()
Gets the value of the columns property.
|
List<Fk> |
getFks()
Gets the value of the fks property.
|
List<Index> |
getIndices()
Gets the value of the indices property.
|
String |
getName()
Gets the value of the name property.
|
Pk |
getPk()
Gets the value of the pk property.
|
List<Unique> |
getUniques()
Gets the value of the uniques property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setPk(Pk value)
Sets the value of the pk property.
|
public void setPk(Pk value)
value - allowed object is
Pkpublic List<Column> getColumns()
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 columns property.
For example, to add a new item, do as follows:
getColumns().add(newItem);
Objects of the following type(s) are allowed in the list
Column
public List<Fk> getFks()
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 fks property.
For example, to add a new item, do as follows:
getFks().add(newItem);
Objects of the following type(s) are allowed in the list
Fk
public List<Index> getIndices()
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 indices property.
For example, to add a new item, do as follows:
getIndices().add(newItem);
Objects of the following type(s) are allowed in the list
Index
public List<Behavior> getBehaviors()
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 behaviors property.
For example, to add a new item, do as follows:
getBehaviors().add(newItem);
Objects of the following type(s) are allowed in the list
Behavior
public List<Unique> getUniques()
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 uniques property.
For example, to add a new item, do as follows:
getUniques().add(newItem);
Objects of the following type(s) are allowed in the list
Unique
public List<Check> getChecks()
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 checks property.
For example, to add a new item, do as follows:
getChecks().add(newItem);
Objects of the following type(s) are allowed in the list
Check
public String getName()
StringCopyright © 2017. All rights reserved.