接口 IItemList<T>

所有超级接口:
IItemCollection<T>, Iterable<T>
所有已知子接口:
IDropDownItemList, IListBoxItemList

public interface IItemList<T> extends IItemCollection<T>
保存构成ISelector内容的项目列表。
  • 方法概要

    修饰符和类型
    方法
    说明
    get(int index)
    获取给定基于零的索引处的项。
    int
    indexOf(T item)
    返回指定项在该集合中的索引。
    void
    insert(int index, T item)
    在指定的索引处向集合插入一个元素。
    void
    removeAt(int index)
    移除集合中指定索引的元素。
    void
    set(int index, T value)
    设置给定的从零开始的索引处的项。

    从接口继承的方法 com.grapecity.documents.excel.forms.IItemCollection

    add, clear, contains, getCount, remove

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

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

    • get

      T get(int index)
      获取给定基于零的索引处的项。
      参数:
      index - 项的基于零的索引。
      返回:
      被检索的对象。
    • set

      void set(int index, T value)
      设置给定的从零开始的索引处的项。
      参数:
      index - 索引值从0开始。
      value - 要设置到指定索引处的对象。
    • indexOf

      int indexOf(T item)
      返回指定项在该集合中的索引。
      参数:
      item - 要在集合中查找的对象。
      返回:
      项在集合中的索引,如果项不存在于集合中则返回 -1。
    • insert

      void insert(int index, T item)
      在指定的索引处向集合插入一个元素。
      参数:
      index - 要插入项的索引值从0开始。@param item 要插入的项。
    • removeAt

      void removeAt(int index)
      移除集合中指定索引的元素。
      参数:
      index - 要移除的元素的基于零的索引。