
org.dbunit.dataset.builder.RowBuilderNameCreator 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 interface RowBuilderNameCreator {
/**
* Creates the name of the RowBuilder.
* @author niels
* @since 2.4.0
* @param tableName name of the table.
* @return name of the RowBuilder.
*/
String createRowBuilderName(String tableName);
/**
* Creates the name of the factory method for the RowBuilder.
* @author niels
* @since 2.4.0
* @param tableName name of the table.
* @return name of the factory method for the RowBuilder.
*/
String createFactoryMethodName(String tableName);
/**
* Creates the name of the method to define a value.
* @author niels
* @since 2.4.0
* @param columnName name of the column.
* @return the name of the method to define a value.
*/
String createSetterName(String columnName);
/**
* Creates the name of the constant-name for the column.
* @author niels
* @since 2.4.0
* @param columnName name of the column.
* @return the name of the constant-name for the column.
*/
String createColumnConstantName(String columnName);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy