DataBuildInterface<E> class
abstract
数据操作接口
- Implementers
Constructors
Properties
Methods
-
addItem(
E item) → void -
新增
item
-
addItems(
List< E?> items) → void -
新增数组
items
-
addItemsClear(
List< E?> items) → void - 清除并新增
-
clear(
) → void - 清除列表
-
indexOfItem(
E item) → int -
获取
item
数据对应首个下标 -
insert(
int position, E item) → void -
插入
item
到指定下标 -
item(
int position) → E? -
获取下标
position
数据项 -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
remove(
E item) → void -
移除
item
-
removeAt(
int position) → void -
移除下标
position
-
swap(
int current, int next) → void - 交换下标位置
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited