public interface CollectionTable<T> extends Child<T>
collection-table
xsd typeModifier and Type | Method and Description |
---|---|
CollectionTable<T> |
catalog(String catalog)
Sets the
catalog attribute |
JoinColumn<CollectionTable<T>> |
createJoinColumn()
Creates a new
join-column element |
UniqueConstraint<CollectionTable<T>> |
createUniqueConstraint()
Creates a new
unique-constraint element |
List<JoinColumn<CollectionTable<T>>> |
getAllJoinColumn()
Returns all
join-column elements |
List<UniqueConstraint<CollectionTable<T>>> |
getAllUniqueConstraint()
Returns all
unique-constraint elements |
String |
getCatalog()
Returns the
catalog attribute |
String |
getName()
Returns the
name attribute |
JoinColumn<CollectionTable<T>> |
getOrCreateJoinColumn()
If not already created, a new
join-column element will be created and returned. |
UniqueConstraint<CollectionTable<T>> |
getOrCreateUniqueConstraint()
If not already created, a new
unique-constraint element will be created and returned. |
String |
getSchema()
Returns the
schema attribute |
CollectionTable<T> |
name(String name)
Sets the
name attribute |
CollectionTable<T> |
removeAllJoinColumn()
Removes all
join-column elements |
CollectionTable<T> |
removeAllUniqueConstraint()
Removes all
unique-constraint elements |
CollectionTable<T> |
removeCatalog()
Removes the
catalog attribute |
CollectionTable<T> |
removeName()
Removes the
name attribute |
CollectionTable<T> |
removeSchema()
Removes the
schema attribute |
CollectionTable<T> |
schema(String schema)
Sets the
schema attribute |
JoinColumn<CollectionTable<T>> getOrCreateJoinColumn()
join-column
element will be created and returned.
Otherwise, the first existing join-column
element will be returned.join-column
JoinColumn<CollectionTable<T>> createJoinColumn()
join-column
elementJoinColumn>
List<JoinColumn<CollectionTable<T>>> getAllJoinColumn()
join-column
elementsjoin-column
CollectionTable<T> removeAllJoinColumn()
join-column
elementsJoinColumn>
UniqueConstraint<CollectionTable<T>> getOrCreateUniqueConstraint()
unique-constraint
element will be created and returned.
Otherwise, the first existing unique-constraint
element will be returned.unique-constraint
UniqueConstraint<CollectionTable<T>> createUniqueConstraint()
unique-constraint
elementUniqueConstraint>
List<UniqueConstraint<CollectionTable<T>>> getAllUniqueConstraint()
unique-constraint
elementsunique-constraint
CollectionTable<T> removeAllUniqueConstraint()
unique-constraint
elementsUniqueConstraint>
CollectionTable<T> name(String name)
name
attributename
- the value for the attribute name
CollectionTable
String getName()
name
attributename
CollectionTable<T> removeName()
name
attributeCollectionTable
CollectionTable<T> catalog(String catalog)
catalog
attributecatalog
- the value for the attribute catalog
CollectionTable
String getCatalog()
catalog
attributecatalog
CollectionTable<T> removeCatalog()
catalog
attributeCollectionTable
CollectionTable<T> schema(String schema)
schema
attributeschema
- the value for the attribute schema
CollectionTable
String getSchema()
schema
attributeschema
CollectionTable<T> removeSchema()
schema
attributeCollectionTable
Copyright © 2013 JBoss, a division of Red Hat, Inc.. All rights reserved.