Package net.ontopia.persistence.rdbms
Class Index
- java.lang.Object
-
- net.ontopia.persistence.rdbms.Index
-
public class Index extends Object
INTERNAL: Represents the definition of a relational table index.
-
-
Constructor Summary
Constructors Constructor Description Index()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]getColumns()INTERNAL: Gets the indexed columns.StringgetName()INTERNAL: Gets the name of the column.StringgetShortName()INTERNAL: Gets the short name of the table.voidsetColumns(String[] columns)INTERNAL: Sets the indexed column.voidsetName(String name)INTERNAL: Sets the name of the column.voidsetShortName(String shortname)INTERNAL: Sets the short name of the table.
-
-
-
Method Detail
-
getName
public String getName()
INTERNAL: Gets the name of the column.
-
setName
public void setName(String name)
INTERNAL: Sets the name of the column.
-
getShortName
public String getShortName()
INTERNAL: Gets the short name of the table.
-
setShortName
public void setShortName(String shortname)
INTERNAL: Sets the short name of the table.
-
getColumns
public String[] getColumns()
INTERNAL: Gets the indexed columns.
-
setColumns
public void setColumns(String[] columns)
INTERNAL: Sets the indexed column.
-
-