类 DsIterator

java.lang.Object
com.sh.javax.datastore.DsIterator

public class DsIterator extends Object

Description: 数据集迭代嚣

Title:首亨软件 - TSS/CRM等

从以下版本开始:
2020年5月9日
  • 构造器详细资料

    • DsIterator

      public DsIterator(Datastore ds)
    • DsIterator

      public DsIterator(Datastore ds, int rowNo)
  • 方法详细资料

    • hasNext

      public boolean hasNext()
    • next

      public RowInfo next()
    • setRowNo

      public RowInfo setRowNo(int rowNo)
      修改当前的索引号
      参数:
      rowNo - 行号,从1开始
      返回:
      RowInfo
    • previous

      public boolean previous()
    • hasPrevious

      public boolean hasPrevious()
    • rowNo

      public int rowNo()
    • terminate

      public void terminate()
    • hasTerminate

      public boolean hasTerminate()
    • isFirstRow

      public boolean isFirstRow()
      是否第一行
      返回:
      boolean
    • rowCount

      public int rowCount()
    • isLastRow

      public boolean isLastRow()
    • getCurRowInfo

      public RowInfo getCurRowInfo()
    • getRowInfoByRowNo

      public RowInfo getRowInfoByRowNo(int rowNo)
    • forEach

      public void forEach(Consumer<? super RowInfo> action)
    • forEach

      public void forEach(BiConsumer<? super RowInfo,? super DsIterator> action)