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

org.supercsv.ext.cellprocessor.ParseLocaleSqlDate Maven / Gradle / Ivy

The newest version!
/*
 * ParseLocaleSqlDate.java
 * created in 2013/03/06
 *
 * (C) Copyright 2003-2013 GreenDay Project. All rights reserved.
 */
package org.supercsv.ext.cellprocessor;

import java.text.ParseException;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;

import org.supercsv.cellprocessor.ift.DateCellProcessor;

/**
 * 
 * @author T.TSUCHIE
 *
 */
public class ParseLocaleSqlDate extends ParseLocaleDate {
    
    public ParseLocaleSqlDate(final String format) {
        this(format, true, null, null);
    }
    
    public ParseLocaleSqlDate(final String format, final DateCellProcessor next) {
        this(format, true, null, null, next);
    }
    
    public ParseLocaleSqlDate(final String pattern, final boolean lenient) {
        this(pattern, lenient, Locale.getDefault(), null);
    }
    
    public ParseLocaleSqlDate(final String pattern, final boolean lenient, final DateCellProcessor next) {
        this(pattern, lenient, Locale.getDefault(), null, next);
    }
    
    public ParseLocaleSqlDate(final String format, final boolean lenient, final Locale locale, final TimeZone timeZone) {
        super(format, lenient, locale, timeZone);
    }
    
    public ParseLocaleSqlDate(final String format, final boolean lenient, final Locale locale, final TimeZone timeZone, final DateCellProcessor next) {
        super(format, lenient, locale, timeZone, next);
    }
    
    /**
     * {@inheritDoc}
     */
    @Override
    protected Object parse(final String value) throws ParseException {
        
        final Date result = formatter.get().parse(value);
        return new java.sql.Date(result.getTime());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy