![JAR search and dependency download from the Maven repository](/logo.png)
com.github.bingoohuang.excel2maps.ColumnDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of excel2javabeans Show documentation
Show all versions of excel2javabeans Show documentation
a little utility to convert excel rows to java beans
package com.github.bingoohuang.excel2maps;
import lombok.Value;
import org.apache.commons.lang3.StringUtils;
@Value public class ColumnDef {
final String title;
final String columnName;
final String ignorePattern;
public ColumnDef(String title, String columnName) {
this(title, columnName, null);
}
public ColumnDef(String title, String columnName, String ignorePattern) {
this.title = StringUtils.upperCase(title);
this.columnName = columnName;
this.ignorePattern = StringUtils.upperCase(ignorePattern);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy