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 name="unique-constraint" type="{http://java.sun.com/xml/ns/persistence/orm}unique-constraint" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="catalog" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="schema" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
catalog |
protected String |
name |
protected String |
schema |
protected List<UniqueConstraint> |
uniqueConstraint |
| Constructor and Description |
|---|
Table() |
| Modifier and Type | Method and Description |
|---|---|
String |
getCatalog()
Gets the value of the catalog property.
|
String |
getName()
Gets the value of the name property.
|
String |
getSchema()
Gets the value of the schema property.
|
List<UniqueConstraint> |
getUniqueConstraint()
Gets the value of the uniqueConstraint property.
|
void |
setCatalog(String value)
Sets the value of the catalog property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setSchema(String value)
Sets the value of the schema property.
|
protected List<UniqueConstraint> uniqueConstraint
protected String catalog
protected String name
protected String schema
public List<UniqueConstraint> getUniqueConstraint()
set method for the uniqueConstraint property.
For example, to add a new item, do as follows:
getUniqueConstraint().add(newItem);
Objects of the following type(s) are allowed in the list
UniqueConstraintpublic String getCatalog()
Stringpublic void setCatalog(String value)
value - allowed object is
Stringpublic String getName()
Stringpublic void setName(String value)
value - allowed object is
Stringpublic String getSchema()
StringCopyright © 1999–2021 The Apache Software Foundation. All rights reserved.