1 package com.github.mygreen.supercsv.builder.joda;
2
3 import org.joda.time.YearMonth;
4
5 /**
6 * {@link YearMonth}に対するAutoBuilder。
7 * @since 2.1
8 * @author T.TSUCHIE
9 *
10 */
11 public class YearMonthProcessorBuilder extends AbstractJodaProcessorBuilder<YearMonth> {
12
13 /**
14 * {@literal yyyy-MM}を返す。
15 */
16 @Override
17 protected String getDefaultPattern() {
18 return "yyyy-MM";
19 }
20
21 }