Interface TableDefinitionComp
-
- All Known Subinterfaces:
TableDefinition
public interface TableDefinitionComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<TableDefinitionColumn>
getTableDefinitionColumns()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useTableDefinition.getTableDefinitionColumns()
instead.Iterator<TableDefinitionConstraint>
getTableDefinitionConstraints()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useTableDefinition.getTableDefinitionConstraints()
instead.Iterator<Table>
getTables()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useTableDefinition.getTables()
instead.
-
-
-
Method Detail
-
getTables
@Deprecated Iterator<Table> getTables()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useTableDefinition.getTables()
instead.
-
getTableDefinitionColumns
@Deprecated Iterator<TableDefinitionColumn> getTableDefinitionColumns()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useTableDefinition.getTableDefinitionColumns()
instead.Get anIterator
over a collection ofTableDefinitionColumns
, the collection will be ordered by DisplayOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Email alert gateway headers.- Returns:
- An
Iterator
over a collection ofTableDefinitionColumn
objects , the collection will be ordered by DisplayOrder.
-
getTableDefinitionConstraints
@Deprecated Iterator<TableDefinitionConstraint> getTableDefinitionConstraints()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useTableDefinition.getTableDefinitionConstraints()
instead.Get anIterator
over an ordered collection ofTableDefinitionConstraints
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The table definition of a table definition constraint.- Returns:
- An
Iterator
over an ordered collection ofTableDefinitionConstraint
objects .
-
-