1 package com.github.mygreen.supercsv.builder.time;
2
3 import java.time.YearMonth;
4
5 /**
6 * {@link YearMonth}型のビルダクラス。
7 *
8 * @since 2.1
9 * @author T.TSUCHIE
10 *
11 */
12 public class YearMonthProcessorBuilder extends AbstractTemporalProcessorBuilder<YearMonth> {
13
14 /**
15 * {@literal uuuu-MM}を返す。
16 */
17 @Override
18 protected String getDefaultPattern() {
19 return "uuuu-MM";
20 }
21
22 }