Class RowMap

java.lang.Object
org.labkey.remoteapi.query.RowMap
All Implemented Interfaces:
Row

public class RowMap extends Object implements Row
  • Constructor Details

  • Method Details

    • setMap

      public void setMap(Map<String,Object> row)
    • getValue

      public Object getValue(String columnName)
      Description copied from interface: Row
      Returns a column's raw value.
      Specified by:
      getValue in interface Row
      Parameters:
      columnName - The column name.
      Returns:
      The column's raw value or null if the column was not found.
    • getDisplayValue

      public Object getDisplayValue(String columnName)
      Description copied from interface: Row
      Returns a column's display value (if different from value).
      Specified by:
      getDisplayValue in interface Row
      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

      public String getUrl(String columnName)
      Description copied from interface: Row
      Returns a column's URL
      Specified by:
      getUrl in interface Row
      Parameters:
      columnName - The column name.
      Returns:
      The column's URL value, or null if the column was not found or does not have a URL.
    • getMvValue

      public String getMvValue(String columnName)
      Description copied from interface: Row
      Returns a column's missing-value indicator.
      Specified by:
      getMvValue in interface Row
      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

      public Object getMvRawValue(String columnName)
      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 interface Row
      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

      public String toString()
      Overrides:
      toString in class Object