Package hec.io.dbf

Class DefaultDbfRecordIndexSet

java.lang.Object
hec.io.dbf.DefaultDbfRecordIndexSet
All Implemented Interfaces:
DbfRecordIndexSet, Serializable
Direct Known Subclasses:
DbfRecordQuery, DbfResultSet

public class DefaultDbfRecordIndexSet extends Object implements DbfRecordIndexSet
A class that defines the index and record number information for a Dbf related function. This class is used for delete operations and is the base class for all other operations.
See Also:
  • Constructor Details

    • DefaultDbfRecordIndexSet

      public DefaultDbfRecordIndexSet(String indexFileName, String indexTagName)
      Constructs record index set with the argument index file and index tag. The index file can be null, the index tag shouldnt be null.
    • DefaultDbfRecordIndexSet

      public DefaultDbfRecordIndexSet(String indexTagName, Serializable[] indexTagKeys)
      Constructs a record index set with the tag name and the key array.
    • DefaultDbfRecordIndexSet

      public DefaultDbfRecordIndexSet(String indexFileName, String indexTagName, Serializable[] indexTagKeys)
      Constructs a record index set with the index file, index tag, and key array.
    • DefaultDbfRecordIndexSet

      public DefaultDbfRecordIndexSet(DbfRecordIndexSet copyMe)
      Copy constructs a record index set.
  • Method Details