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

com.supwisdom.spreadsheet.mapper.w2o.setter.LocalDatePropertySetter Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package com.supwisdom.spreadsheet.mapper.w2o.setter;

import java.time.LocalDate;
import java.time.format.DateTimeFormatter;

/**
 * local date field value setter
 * Created by hanwen on 5/3/16.
 */
public class LocalDatePropertySetter extends PropertySetterTemplate {

  private String pattern;

  public LocalDatePropertySetter(String pattern) {
    this.pattern = pattern;
  }

  @Override
  protected LocalDate convertToProperty(String cellValue) {
    return LocalDate.parse(cellValue, DateTimeFormatter.ofPattern(pattern));
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy