接口 ITableRows

所有超级接口:
Iterable<ITableRow>

public interface ITableRows extends Iterable<ITableRow>
Represents a collection of all the ITableRow objects in the specifiedITable object. Each ITableRow object represents a row in the table.
  • 方法概要

    修饰符和类型
    方法
    说明
    add()
    Adds a new row to the table object.
    add(int position)
    Adds a new row to the table object.
    void
    add(int position, int count)
    Adds new row(s) to the table object.
    void
    delete(int position, int count)
    Deletes the cells of the table row(s) and shifts upward any remaining cells below the deleted row(s).
    get(int index)
    Gets the ITableRow at the specified index.
    int
    Returns the number of objects in the collection.

    从接口继承的方法 java.lang.Iterable

    forEach, iterator, spliterator
  • 方法详细资料

    • get

      ITableRow get(int index)
      Gets the ITableRow at the specified index.
      参数:
      index - The index.
    • getCount

      int getCount()
      Returns the number of objects in the collection.
    • add

      ITableRow add()
      Adds a new row to the table object. Returns the ITableRow object.
    • add

      ITableRow add(int position)
      Adds a new row to the table object. Returns the ITableRow object.
      参数:
      position - 0 based Integer. Specifies the relative position of the new row.
    • add

      void add(int position, int count)
      Adds new row(s) to the table object.
      参数:
      position - 0 based Integer. Specifies the relative position of the new row(s).
      count - Specifies the count of the new row(s).
    • delete

      void delete(int position, int count)
      Deletes the cells of the table row(s) and shifts upward any remaining cells below the deleted row(s).
      参数:
      position - 0 based Integer. Specifies the relative position of the deleted row(s).
      count - Specifies the count of the deleted row(s).