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

com.github.stupdit1t.excel.handle.CharHandler Maven / Gradle / Ivy

There is a newer version: 3.3.0
Show newest version
package com.github.stupdit1t.excel.handle;

import com.github.stupdit1t.excel.handle.rule.BaseVerifyRule;


/**
 * char校验实体
 *
 * @author 625
 */
public class CharHandler extends BaseVerifyRule {

    /**
     * 常规验证
     *
     * @param allowNull 可为空
     */
    public CharHandler(boolean allowNull) {
        super(allowNull);
    }

    @Override
    public Character doHandle(String fieldName, String index, Object cellValue) throws Exception {
        if (cellValue instanceof Character) {
            return (Character) cellValue;
        } else {
            return String.valueOf(cellValue).toCharArray()[0];
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy