All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.bingoohuang.excel2maps.ColumnDef Maven / Gradle / Ivy

There is a newer version: 0.0.34
Show newest version
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