public class Table extends Object
Modifier and Type | Method and Description |
---|---|
boolean |
equals(Object object)
Determines whether this Table is equal to the supplied object.
|
List<String> |
getColumnNames()
Gets the list of column names that this Table contains.
|
List<Column> |
getColumns()
Gets the list of columns that this Table contains.
|
String |
getName()
Gets the name of this Table.
|
List<Column> |
getPrimaryKeyColumns()
Gets the list of primary key columns of this Table.
|
int |
hashCode()
Computes the hash code for this Table.
|
void |
setColumns(List<Column> columns)
Sets the columns for this Table.
|
void |
setPrimaryKeyColumns(List<Column> primaryKeyColumns)
Sets the list of primary key columns for this Table.
|
String |
toString()
Creates a String representation of this Table.
|
public String getName()
public List<Column> getColumns()
public List<String> getColumnNames()
public void setColumns(List<Column> columns)
columns
- The list of columns.NullPointerException
- When the supplied columns list is null.public List<Column> getPrimaryKeyColumns()
public void setPrimaryKeyColumns(List<Column> primaryKeyColumns)
primaryKeyColumns
- The list of primary key columns.
NullPointerException
- When the supplied primaryKeyColumns list is null.public boolean equals(Object object)
public int hashCode()
Copyright © 2008–2018. All rights reserved.