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

com.alon.spring.crud.repository.specification.converter.DateTimeConverter Maven / Gradle / Ivy

Go to download

Projeto base para criação de serviços e recusos de CRUD com Spring Data JPA.

There is a newer version: 3.0.0
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package com.alon.spring.crud.repository.specification.converter;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

/**
 *
 * @author paulo
 */
public class DateTimeConverter implements DecoderConverter {
    
    private static DateTimeConverter INSTANCE;
    
    private static final SimpleDateFormat DATE_FORMATTER = new SimpleDateFormat("yyyy-MM-dd");
    private static final SimpleDateFormat TIME_FORMATTER = new SimpleDateFormat("HH:mm");
    private static final SimpleDateFormat DATE_TIME_FORMATTER = new SimpleDateFormat("yyyy-MM-dd HH:mm");
    
    private DateTimeConverter() {}

    @Override
    public Date convert(String value) {
        try {
            switch (value.length()) {
                case 5: return TIME_FORMATTER.parse(value);
                case 10: return DATE_FORMATTER.parse(value);
                case 16: return DATE_TIME_FORMATTER.parse(value);
                default: throw this.buildException(value);
            }
        } catch (ParseException ex) {
            throw this.buildException(value);
        }
    }
    
    private IllegalArgumentException buildException(String value) {
        return new IllegalArgumentException(String.format("Invalid date string -> %s", value));
    }
    
    public static DateTimeConverter getInstance() {
        if (INSTANCE == null)
            INSTANCE = new DateTimeConverter();
        
        return INSTANCE;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy