Interface TableComp

  • All Known Subinterfaces:
    Table

    public interface TableComp
    This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
    • Method Detail

      • getTableValues

        @Deprecated
        Iterator<TableValue> getTableValues()
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use Table.getTableValues() instead.
        Get an Iterator over a collection of TableValues, the collection will be ordered by Key DisplayOrder. If the collection is empty, an empty iterator will be returned, that is, this method will never return null. Table values.
        Returns:
        An Iterator over a collection of TableValue objects , the collection will be ordered by Key DisplayOrder.
      • getTableRowByKey

        @Deprecated
        Iterator<TableValue> getTableRowByKey​(String key)
        Deprecated.
        this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, use Table.getTableRowByKey(String key) instead.
        Return an iterator with all the values in the row.
        Parameters:
        key - The key (case insensitive).
        Returns:
        The values in the row.