| java.lang.Object org.apache.derby.impl.sql.compile.ColumnOrdering
ColumnOrdering | class ColumnOrdering (Code) | | |
myDirection | int myDirection(Code) | | |
ColumnOrdering | ColumnOrdering(int direction)(Code) | | Parameters: direction - See RowOrdering for possible values |
addColumn | void addColumn(int tableNumber, int columnNumber)(Code) | | Add a column in a table to this ColumnOrdering
Parameters: tableNumber - The number of table in question Parameters: columnNumber - The column number in the table (one-based) |
contains | boolean contains(int tableNumber, int columnNumber)(Code) | | Does this ColumnOrdering contain the given column?
Parameters: tableNumber - The number of table in question Parameters: columnNumber - The column number in the table (one-based) true if the column is found here in the right direction |
direction | int direction()(Code) | | Get the direction of this ColumnOrdering
|
empty | boolean empty()(Code) | | Tell whether this ColumnOrdering has no elements.
|
hasAnyOtherTable | boolean hasAnyOtherTable(int tableNumber)(Code) | | Is there any table other than the given one in this ColumnOrdering?
|
hasTable | boolean hasTable(int tableNumber)(Code) | | Is the given table number in this ColumnOrdering?
|
ordered | boolean ordered(int direction, int tableNumber, int columnNumber)(Code) | | Does this ColumnOrdering contain the given column in the given table
in the right direction?
Parameters: direction - See RowOrdering for possible values Parameters: tableNumber - The number of the table in question Parameters: columnNumber - The column number in the table (one-based) true if the column is found here in the right direction |
removeColumns | void removeColumns(int tableNumber)(Code) | | Remove all columns with the given table number
|
|
|