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