Package org.labkey.remoteapi.query
Class RowMap
java.lang.Object
org.labkey.remoteapi.query.RowMap
- All Implemented Interfaces:
Row
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetDisplayValue
(String columnName) Returns a column's display value (if different from value).getMvRawValue
(String columnName) Returns the column's missing-value raw value.getMvValue
(String columnName) Returns a column's missing-value indicator.Returns a column's URLReturns a column's raw value.void
toString()
-
Constructor Details
-
RowMap
public RowMap() -
RowMap
-
-
Method Details
-
setMap
-
getValue
Description copied from interface:Row
Returns a column's raw value. -
getDisplayValue
Description copied from interface:Row
Returns a column's display value (if different from value).- Specified by:
getDisplayValue
in interfaceRow
- Parameters:
columnName
- The column name.- Returns:
- The display value, or null if the column was not found or does not have a different display value.
-
getUrl
Description copied from interface:Row
Returns a column's URL -
getMvValue
Description copied from interface:Row
Returns a column's missing-value indicator.- Specified by:
getMvValue
in interfaceRow
- Parameters:
columnName
- The column name.- Returns:
- The column's mising-value indicator, or null if the column was not found or is not missing-value enabled.
-
getMvRawValue
Description copied from interface:Row
Returns the column's missing-value raw value. This is the actual value imported into the database along with the missing-value indicator.- Specified by:
getMvRawValue
in interfaceRow
- Parameters:
columnName
- The column name.- Returns:
- The column's mising-value raw value, or null if the column was not found or is not missing-value enabled.
-
toString
-