public interface StaticLovColumn extends LovColumn
This interface represents the columns in the list of values based on specified values.
To instantiate a column of a static list of values, you can use:
BusinessLayerFactory.createStaticLovColumn(String, StaticLov)DataFoundationFactory.createStaticLovColumn(String, StaticLov)The following features are supported:
| Modifier and Type | Method and Description |
|---|---|
LovParameterDataType |
getDataType()
Returns the value of the 'Data Type' attribute.
|
StaticLovColumn |
getKeyColumn()
Returns the value of the 'Key Column' reference.
|
StaticLov |
getStaticLov()
Returns the value of the 'Static 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(StaticLovColumn value)
Sets the value of the '
Key Column' reference. |
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()StaticLovColumn getKeyColumn()
This is the column that is used as key.
setKeyColumn(StaticLovColumn)void setKeyColumn(StaticLovColumn value)
Key Column' reference.
This is the column that is 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()StaticLov getStaticLov()
This is the static list of values.