Interface RetrievedSQLRecord

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.Object get​(java.lang.String fieldName)
      Gets a value from the record.
      <U> U get​(java.lang.String fieldName, java.lang.Class<? extends U> type)
      Gets a converted value from the record.
      int size()
      Gets the number of fields in the record.
    • Method Detail

      • get

        java.lang.Object get​(java.lang.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​(java.lang.String fieldName,
                  java.lang.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.