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