com.zhuozhengsoft.pageoffice.excelreader
类 DataFieldCollection

java.lang.Object
  继承者 com.zhuozhengsoft.pageoffice.excelreader.DataFieldCollection

public class DataFieldCollection
extends java.lang.Object

DataField 字段集合,代表 com.zhuozhengsoft.pageoffice.excelreader.Table 中当前记录行。

版本:
2.0
作者:
北京卓正志远软件有限公司

方法摘要
 DataField get(int index)
          获取指定索引的 DataField 字段对象。
 boolean getIsEmpty()
          获取当前记录行是否为空。
 java.lang.String getKeyValue()
          获取当前记录行的关键字段的值。
 int size()
          获取 DataField 数量。
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

方法详细信息

size

public int size()
获取 DataField 数量。这个数量是指 Table 中合并单元格之前的列数。


get

public DataField get(int index)
获取指定索引的 DataField 字段对象。

参数:
index - DataField 的索引。从"0"开始。

getKeyValue

public java.lang.String getKeyValue()
获取当前记录行的关键字段的值。


getIsEmpty

public boolean getIsEmpty()
获取当前记录行是否为空。如果当前记录行的所有字段都为空就返回true。