Interface DataObject

All Superinterfaces:
Map<String,String>
All Known Implementing Classes:
DataObjectImpl, DataResultSetRow

@Exported public interface DataObject extends Map<String,String>
Generic data object that holds name/value pairs. It may be used to represent a row of value in a DataResultSet.
  • Method Details

    • getBoolean

      boolean getBoolean(String name, boolean defaultValue)
      Retrieve the result as a boolean
      Parameters:
      name - the property name
      defaultValue - the default value if not found
      Returns:
      the boolean value
    • setBoolean

      void setBoolean(String name, boolean value)
      Set a value as a boolean
      Parameters:
      name - the property name
      value - the property value
    • setDate

      void setDate(String name, Date date)
      Set a date value. Note the date should be in GMT time.
      Parameters:
      name - the property name
      date - the date in GMT time
    • getDate

      Date getDate(String name)
      Retrieve the date. Note the date is in GMT time.
      Parameters:
      name - the property name
      Returns:
      the date value in GMT or null if not found
    • getCalendar

      Calendar getCalendar(String name)
      Retrieve the date.
      Parameters:
      name - the property name
      Returns:
      the date value in GMT or null if not found
    • getInteger

      int getInteger(String name)
      Retrieve a value as an integer
      Parameters:
      name - the property name
      Returns:
      the integer value or -1 if not found