Interface RetrievedSQLRecord

All Known Implementing Classes:
RetrievedSQLRecordImpl

public interface RetrievedSQLRecord
Retrieved SQL record.
  • Method Summary

    Modifier and Type
    Method
    Description
    get(String fieldName)
    Gets a value from the record.
    <U> U
    get(String fieldName, Class<? extends U> type)
    Gets a converted value from the record.
    int
    Gets the number of fields in the record.
  • Method Details

    • get

      Object get(String fieldName)
      Gets a value from the record.
      Parameters:
      fieldName - The field name.
      Returns:
      The value of the field contained in the record.
    • get

      <U> U get(String fieldName, Class<? extends U> type)
      Gets a converted value from the record.
      Type Parameters:
      U - The conversion type parameter
      Parameters:
      fieldName - The field name.
      type - The conversion type
      Returns:
      The value of the field contained in the record.
    • size

      int size()
      Gets the number of fields in the record.
      Returns:
      The number of fields in the record.