Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package cucumber.api;
import cucumber.runtime.ParameterInfo;
import cucumber.runtime.table.DiffableRow;
import cucumber.runtime.table.TableConverter;
import cucumber.runtime.table.TableDiffException;
import cucumber.runtime.table.TableDiffer;
import cucumber.runtime.table.TypeReference;
import cucumber.runtime.xstream.LocalizedXStreams;
import gherkin.formatter.PrettyFormatter;
import gherkin.formatter.model.DataTableRow;
import gherkin.formatter.model.Row;
import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Locale;
import java.util.Map;
/**
* Represents the data from a Gherkin DataTable. Cucumber will convert the table in Gherkin
* to a DataTable instance and pass it to a step definition.
*/
public class DataTable {
private final List> raw;
private final List gherkinRows;
private final TableConverter tableConverter;
public static DataTable create(List> raw) {
return create(raw, Locale.getDefault(), null, new String[0]);
}
public static DataTable create(List> raw, String dateFormat, String... columnNames) {
return create(raw, Locale.getDefault(), dateFormat, columnNames);
}
public static DataTable create(List> raw, Locale locale, String... columnNames) {
return create(raw, locale, null, columnNames);
}
private static DataTable create(List> raw, Locale locale, String dateFormat, String... columnNames) {
ParameterInfo parameterInfo = new ParameterInfo(null, dateFormat, null, null);
TableConverter tableConverter = new TableConverter(new LocalizedXStreams(Thread.currentThread().getContextClassLoader()).get(locale), parameterInfo);
return tableConverter.toTable(raw, columnNames);
}
/**
* Creates a new DataTable. This constructor should not be called by Cucumber users - it's used internally only.
*
* @param gherkinRows the underlying rows.
* @param tableConverter how to convert the rows.
*/
public DataTable(List gherkinRows, TableConverter tableConverter) {
this.gherkinRows = gherkinRows;
this.tableConverter = tableConverter;
List> raw = new ArrayList>();
for (Row row : gherkinRows) {
List list = new ArrayList();
list.addAll(row.getCells());
raw.add(Collections.unmodifiableList(list));
}
this.raw = Collections.unmodifiableList(raw);
}
/**
* Converts the table to a 2D array.
*
* @return a List of List of String.
*/
public List> raw() {
return this.raw;
}
public T convert(Type type) {
return tableConverter.convert(type, this);
}
/**
* Converts the table to a List of Map. The top row is used as keys in the maps,
* and the rows below are used as values.
*
* @return a List of Map.
*/
public List