| Home >> All >> org >> dbunit >> [ dataset Javadoc ] |
org.dbunit.dataset: Javadoc index of package org.dbunit.dataset.
Package Samples:
org.dbunit.dataset.csv.handlers
org.dbunit.dataset.csv
org.dbunit.dataset.datatype
org.dbunit.dataset.excel
org.dbunit.dataset.filter
org.dbunit.dataset.stream
org.dbunit.dataset.xml
Classes:
FlatXmlDataSet: Reads and writes flat XML dataset document. Each XML element corresponds to a table row. Each XML element name corresponds to a table name. The XML attributes correspond to table columns. Flat XML dataset document sample: <!DOCTYPE dataset SYSTEM "my-dataset.dtd"> <dataset> <TEST_TABLE COL0="row 0 col 0" COL1="row 0 col 1" COL2="row 0 col 2"/> <TEST_TABLE COL1="row 1 col 1"/> <SECOND_TABLE COL0="row 0 col 0" COL1="row 0 col 1" /> <EMPTY_TABLE/> </dataset> To specify null values, omit corresponding attribute. In the above example, missing COL0 and COL2 attributes ...
XmlDataSet: Reads and writes original XML dataset document. This format is very verbiose and must conform to the following DTD: <?xml version="1.0" encoding="UTF-8"?> <!ELEMENT dataset (table+)> <!ELEMENT table (column*, row*)> <!ATTLIST table name CDATA #REQUIRED > <!ELEMENT column (#PCDATA)> <!ELEMENT row (value | null | none)*> <!ELEMENT value (#PCDATA)> <!ELEMENT null EMPTY>
AbstractTableFilter: This class provides a skeletal implementation of the ITableFilter interface to minimize the effort required to implement a filter. Subsclasses are only required to implement the isValidName(java.lang.String) 55 method.
SequenceTableFilter: This filter expose a specified table sequence and can be used to reorder tables in a dataset. This implementation do not support duplicate table names. Thus you cannot specify the same table name more than once in this filter and the filtered dataset must not contains duplicate table names. This is the default filter used by the org.dbunit.dataset.FilteredDataSet .
AbstractDataSet: This abstract class provides the basic implementation of the IDataSet interface. Subclass are only required to implement the createIterator(boolean) 55 method.
DefaultConsumer: This class provides no op implementations for all of the callbacks in the IDataSetConsumer interface.
CaseInsensitiveDataSet: Allows access to a decorated dataset in a case insensitive way. Dataset implementations provided by the framework are case sensitive. This class allows using them in situation where case sensitiveness is not desirable.
DefaultTableFilter: This filter exposes only tables matching include patterns and not matching exclude patterns. This implementation do not modify the original table sequence from the filtered dataset and support duplicate table names.
IncludeTableFilter: This filter exposes only allowed tables from the filtered dataset. This implementation do not modify the original table sequence from the filtered dataset and support duplicate table names.
XlsDataSet: This dataset implementation can read and write MS Excel documents. Each sheet represents a table. The first row of a sheet defines the columns names and remaining rows contains the data.
CsvParser: Created By: fede Date: 10-mar-2004 Time: 15.50.13 Last Checkin: $Author: fspinazzi $ Date: $Date: 2004/04/06 06:51:52 $ Revision: $Revision: 1.3 $
CsvDataSetWriterTest: Created By: fede Date: 10-mar-2004 Time: 17.21.34 Last Checkin: $Author: fspinazzi $ Date: $Date: 2004/04/06 06:51:53 $ Revision: $Revision: 1.3 $
ExcludeTableFilter: This filter hides specified tables from the filtered dataset. This implementation do not modify the original table order from the filtered dataset and support duplicate table names.
AllTests: Created By: fede Date: 10-mar-2004 Time: 10.52.00 Last Checkin: $Author: fspinazzi $ Date: $Date: 2004/04/06 06:28:52 $ Revision: $Revision: 1.2 $
LowerCaseTableMetaData: Specialized ITableMetaData implementation that convert the table name and column names to lower case. Used in DbUnit own test suite to verify that operations are case insensitive.
ITableFilter: Represents a strategy used by org.dbunit.dataset.FilteredDataSet to exposes only some tables from a dataset.
LowerCaseDataSet: Specialized IDataSet decorator that convert the table name and column names to lower case. Used in DbUnit own test suite to verify that operations are case insensitive.
SortedTable: This is a ITable decorator that provide a sorted view of the decorated table. This implementation does not keep a separate copy of the decorated table data.
IDataTypeFactory: A factory for creating DataType .
DefaultColumnFilter: Implementation of the IColumnFilter interface that exposes columns matching include patterns and not matching exclude patterns.
FilteredDataSet: Decorates a dataset and exposes only some tables from it. Can be used with different filtering strategies.
ReplacementDataSet: Decorator that replace configured values from the decorated dataset with replacement values.
ReplacementTable: Decorator that replace configured values from the decorated table with replacement values.
CaseInsensitiveTable: All IDataSet implementations are case insensitive since DbUnit 1.5
ForwardOnlyDataSet: Decorator that allows forward only access to decorated dataset.
| Home | Contact Us | Privacy Policy | Terms of Service |