Class DefaultTable

java.lang.Object
org.dbunit.dataset.AbstractTable
org.dbunit.dataset.DefaultTable
All Implemented Interfaces:
ITable
Direct Known Subclasses:
CachedTable

public class DefaultTable extends AbstractTable
Default table implementation backed by a simple java in-memory list.
Since:
Feb 17, 2002
Version:
$Revision$
Author:
Manuel Laflamme
  • Constructor Details

    • DefaultTable

      public DefaultTable(ITableMetaData metaData, List list)
      Deprecated.
      Use public mutators to initialize table values instead
      Creates a new empty table with specified metadata and values.
    • DefaultTable

      public DefaultTable(String tableName)
      Creates a new empty table having the specified name.
    • DefaultTable

      public DefaultTable(String tableName, Column[] columns, List list)
      Deprecated.
      Use public mutators to initialize table values instead
      Creates a new empty table with specified metadata and values.
    • DefaultTable

      public DefaultTable(String tableName, Column[] columns)
      Creates a new empty table with specified metadata.
    • DefaultTable

      public DefaultTable(ITableMetaData metaData)
  • Method Details