public interface SQLQueryLovColumn extends LovColumn
This interface represents the columns in the list of values based on a custom SQL expression.
The following features are supported:
| Modifier and Type | Method and Description |
|---|---|
LovParameterDataType |
getDataType()
Returns the value of the 'Data Type' attribute.
|
SQLQueryLovColumn |
getKeyColumn()
Returns the value of the 'Key Column' reference.
|
java.lang.String |
getObjectName()
Returns the value of the 'Object Name' attribute.
|
SQLQueryLov |
getSqlQueryLov()
Returns the value of the 'Sql Query Lov' reference.
|
boolean |
isHidden()
Returns the value of the 'Hidden' attribute.
|
void |
setDataType(LovParameterDataType value)
Sets the value of the '
Data Type' attribute. |
void |
setHidden(boolean value)
Sets the value of the '
Hidden' attribute. |
void |
setKeyColumn(SQLQueryLovColumn value)
Sets the value of the '
Key Column' reference. |
java.lang.String getObjectName()
This is the name of the business object that defines the column.
LovParameterDataType getDataType()
"STRING".
The literals are from the enumeration LovParameterDataType.
This is the data type of the column.
LovParameterDataType,
setDataType(LovParameterDataType)void setDataType(LovParameterDataType value)
Data Type' attribute.
This is the data type of the column.
value - the new value of the 'Data Type' attribute.LovParameterDataType,
getDataType()SQLQueryLovColumn getKeyColumn()
This is the column used as key.
setKeyColumn(SQLQueryLovColumn)void setKeyColumn(SQLQueryLovColumn value)
Key Column' reference.
This is the column used as key.
value - the new value of the 'Key Column' reference.getKeyColumn()boolean isHidden()
"false".
Tells if the column is displayed (false) or hidden (true) in the list of values.
setHidden(boolean)void setHidden(boolean value)
Hidden' attribute.
Hides the column of the list of values if value is true.
value - the new value of the 'Hidden' attribute.isHidden()SQLQueryLov getSqlQueryLov()
This is the list of values built from a custom SQL expression.