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

com.github.mygreen.supercsv.builder.time.MonthDayProcessorBuilder 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.MonthDay;

/**
 * {@link MonthDay}型のビルダクラス。
 *
 * @since 2.1
 * @author T.TSUCHIE
 *
 */
public class MonthDayProcessorBuilder extends AbstractTemporalProcessorBuilder {

    /**
     * {@literal MM-dd}を返す。
     */
    @Override
    protected String getDefaultPattern() {
        return "MM-dd";
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy