类 HDataRowCollection
- java.lang.Object
-
- top.daxian1218.dust.commons.data.HDataRowCollection
-
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 void
add(int index, HDataRow hDataRow)
HDataRowCollection
add(HDataRow hDataRow)
void
clear()
boolean
contains(HDataRow o)
protected void
finalize()
HDataRow
get(int index)
int
indexOf(HDataRow o)
boolean
isEmpty()
java.util.Iterator<HDataRow>
iterator()
int
lastIndexOf(HDataRow o)
HDataRowCollection
remove(HDataRow hDataRow)
HDataRow
removeAt(int index)
void
removeColumnAt(int index)
HDataRow
set(int index, HDataRow hDataRow)
int
size()
java.util.stream.Stream<HDataRow>
stream()
java.util.List<HDataRow>
subList(int fromIndex, int toIndex)
-
-
-
方法详细资料
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(HDataRow o)
-
iterator
public java.util.Iterator<HDataRow> iterator()
- 指定者:
iterator
在接口中java.lang.Iterable<HDataRow>
-
add
public HDataRowCollection add(HDataRow hDataRow)
-
remove
public HDataRowCollection remove(HDataRow hDataRow)
-
clear
public void clear()
-
get
public HDataRow get(int index)
-
add
public void add(int index, HDataRow hDataRow)
-
removeAt
public HDataRow removeAt(int index)
-
removeColumnAt
public void removeColumnAt(int index)
-
indexOf
public int indexOf(HDataRow o)
-
lastIndexOf
public int lastIndexOf(HDataRow o)
-
subList
public java.util.List<HDataRow> subList(int fromIndex, int toIndex)
-
stream
public java.util.stream.Stream<HDataRow> stream()
-
finalize
protected void finalize() throws java.lang.Throwable
- 覆盖:
finalize
在类中java.lang.Object
- 抛出:
java.lang.Throwable
-
-