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

com.github.mygreen.supercsv.builder.time.LocalDateTimeProcessorBuilder Maven / Gradle / Ivy

Go to download

CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。

There is a newer version: 2.3
Show newest version
package com.github.mygreen.supercsv.builder.time;

import java.time.LocalDateTime;

/**
 * {@link LocalDateTime}に対するビルダ。
 * 
 * @version 2.0
 * @since 1.2
 * @author T.TSUCHIE
 *
 */
public class LocalDateTimeProcessorBuilder extends AbstractTemporalProcessorBuilder {
    
    /**
     * {@literal uuuu-MM-dd HH:mm:ss}を返す。
     */
    @Override
    protected String getDefaultPattern() {
        return "uuuu-MM-dd HH:mm:ss";
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy