Package lumis.content.wizard
Interface ICreateParams.IField.IDatabaseValues
-
- Enclosing interface:
- ICreateParams.IField
public static interface ICreateParams.IField.IDatabaseValues
Represents the field options that will be read from the database.- Since:
- 6.2.1
- Version:
- $Revision: 19445 $ $Date: 2016-11-03 13:42:15 -0200 (Thu, 03 Nov 2016) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICreateParams.IField
getField()
Returns the field that has this database values.String
getForeignKeyName()
Returns the foreign key name for this database option values.String
getRelationName()
Returns the relation name this field uses.String
getTableName()
Returns the name of the table from where the options will be read.String
getTextColumnName()
Returns the name of the column from where the exhibition text will be read.String
getValueColumnName()
Returns the name of the column from where the option's value will be read.boolean
isCreateForeignKey()
Returns whether the foreign key should be created.
-
-
-
Method Detail
-
getTableName
String getTableName()
Returns the name of the table from where the options will be read.- Returns:
- the name of the table from where the options will be read.
- Since:
- 6.2.1
-
getRelationName
String getRelationName()
Returns the relation name this field uses.- Returns:
- the relation name this field uses.
- Since:
- 6.2.1
-
getTextColumnName
String getTextColumnName()
Returns the name of the column from where the exhibition text will be read.- Returns:
- the name of the column from where the exhibition text will be read.
- Since:
- 6.2.1
-
getValueColumnName
String getValueColumnName()
Returns the name of the column from where the option's value will be read.- Returns:
- the name of the column from where the option's value will be read.
- Since:
- 6.2.1
-
getForeignKeyName
String getForeignKeyName()
Returns the foreign key name for this database option values.- Returns:
- the foreign key name for this database option values.
- Since:
- 6.2.1
-
isCreateForeignKey
boolean isCreateForeignKey()
Returns whether the foreign key should be created.- Returns:
- whether the foreign key should be created.
- Since:
- 6.2.1
-
getField
ICreateParams.IField getField()
Returns the field that has this database values.- Returns:
- the field that has this database values.
- Since:
- 6.2.1
-
-