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

cn.creekmoon.excelUtils.converter.LocalDateTimeConverter Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package cn.creekmoon.excelUtils.converter;

import cn.creekmoon.excelUtils.exception.CheckedExcelException;
import cn.hutool.core.date.LocalDateTimeUtil;

import java.time.LocalDateTime;

/**
 * @author JY
 */
public class LocalDateTimeConverter {


    public static LocalDateTime parse(String str) throws CheckedExcelException {
        return LocalDateTimeUtil.of(DateConverter.parse(str));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy