
org.dbunit.dataset.builder.ColumnSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dbunit-datasetbuilder Show documentation
Show all versions of dbunit-datasetbuilder Show documentation
DBUnit - Dynamically Creating Data Sets Using Builders
The newest version!
package org.dbunit.dataset.builder;
public class ColumnSpec {
private final String name;
public static ColumnSpec newColumn(String name) {
return new ColumnSpec(name);
}
protected ColumnSpec(String name) {
this.name = name;
}
public String name() {
return name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy