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

org.jrimum.utilix.DateFormat Maven / Gradle / Ivy

Go to download

This is a fork and merge from JRimum ( http://www.jrimum.org ), - Bopepo: https://github.com/jrimum/bopepo - Texgit: https://github.com/jrimum/texgit - Valia: https://github.com/jrimum/vallia - Utilix: https://github.com/jrimum/utilix - Domkee: https://github.com/jrimum/domkee For Brazillian Boleto Payment Method. So much thanks for original authors: Gilmar P. S. L, Misael Barreto and Rômulo Augusto.

The newest version!
/*
 * Copyright 2010 JRimum Project
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by
 * applicable law or agreed to in writing, software distributed under the
 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
 * OF ANY KIND, either express or implied. See the License for the specific
 * language governing permissions and limitations under the License.
 * 
 * Created at: 01/08/2010 - 17:31:00
 * 
 * ================================================================================
 * 
 * Direitos autorais 2010 JRimum Project
 * 
 * Licenciado sob a Licença Apache, Versão 2.0 ("LICENÇA"); você não pode usar
 * esse arquivo exceto em conformidade com a esta LICENÇA. Você pode obter uma
 * cópia desta LICENÇA em http://www.apache.org/licenses/LICENSE-2.0 A menos que
 * haja exigência legal ou acordo por escrito, a distribuição de software sob
 * esta LICENÇA se dará “COMO ESTÁ”, SEM GARANTIAS OU CONDIÇÕES DE QUALQUER
 * TIPO, sejam expressas ou tácitas. Veja a LICENÇA para a redação específica a
 * reger permissões e limitações sob esta LICENÇA.
 * 
 * Criado em: 01/08/2010 - 17:31:00
 * 
 */

package org.jrimum.utilix;

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

import org.jrimum.utilix.Exceptions;

/**
 * 

* Formatadores de data thread-safe. Para uma mesma categoria, os formatadores * atualmente são diferenciados pelos seus separadores ("formato_separador") * exemplos: *

    *
  • DDMMYY default:ddMMyy
  • *
  • DDMMYY_B barr:dd/MM/yy
  • *
  • DDMMYY_H hyphen:dd-MM-yy
  • *
  • DDMMYY_U underline:dd_MM_yy
  • *
  • HHMMSS_C colon:"hh:mm:ss"
  • *
  • etc.
  • *
*

* * @author Gilmar P.S.L. * * @since 0.2 * * @version 0.2 */ public enum DateFormat implements Format{ /** *

* Formatador de datas no padrão "ddMMyy". *

*/ DDMMYY("ddMMyy"), /** *

* Formatador de datas no padrão "dd/MM/yy". *

*/ DDMMYY_B("dd/MM/yy"), /** *

* Formatador de datas no padrão "dd-MM-yy". *

*/ DDMMYY_H("dd-MM-yy"), /** *

* Formatador de datas no padrão "dd_MM_yy". *

*/ DDMMYY_U("dd_MM_yy"), /** *

* Formatador de datas no padrão "ddMMyyyy". *

*/ DDMMYYYY("ddMMyyyy"), /** *

* Formatador de datas no padrão "dd/MM/yyyy". *

*/ DDMMYYYY_B("dd/MM/yyyy"), /** *

* Formatador de datas no padrão "dd-MM-yyyy". *

*/ DDMMYYYY_H("dd-MM-yyyy"), /** *

* Formatador de datas no padrão "dd_MM_yyyy". *

*/ DDMMYYYY_U("dd_MM_yyyy"), /** *

* Formatador de datas no padrão "yyMMdd". *

*/ YYMMDD("yyMMdd"), /** *

* Formatador de datas no padrão "yy/MM/dd". *

*/ YYMMDD_B("yy/MM/dd"), /** *

* Formatador de datas no padrão "yy/MM/dd". *

*/ YYMMDD_H("yy-MM-dd"), /** *

* Formatador de datas no padrão "yy_MM_dd". *

*/ YYMMDD_U("yy_MM_dd"), /** *

* Formatador de datas no padrão "yyyyMMdd". *

*/ YYYYMMDD("yyyyMMdd"), /** *

* Formatador de datas no padrão "yyyy/MM/dd". *

*/ YYYYMMDD_B("yyyy/MM/dd"), /** *

* Formatador de datas no padrão "yyyy-MM-dd". *

*/ YYYYMMDD_H("yyyy-MM-dd"), /** *

* Formatador de datas no padrão "yyyy_MM_dd". *

*/ YYYYMMDD_U("yyyy_MM_dd"), /** *

* Formatador de datas no padrão "hhmmss". *

*/ HHMMSS("hhmmss"), /** *

* Formatador de datas no padrão "HHmmss". *

*/ HHMMSS_24("HHmmss"), /** *

* Formatador de datas no padrão "hh:mm:ss". *

*/ HHMMSS_C("hh:mm:ss"), /** *

* Formatador de datas no padrão "HH:mm:ss". *

*/ HHMMSS_24C("HH:mm:ss"), ; private final ThreadLocalFormat DATE_FORMAT; private DateFormat(String format) { DATE_FORMAT = new ThreadLocalFormat(format){ @Override protected SimpleDateFormat initialValue() { return new SimpleDateFormat(format); } }; } /** * @see org.jrimum.utilix.text.Format#format(java.lang.Object) */ public String format(Date obj) { return DATE_FORMAT.get().format(obj); } /** * @see org.jrimum.utilix.text.Format#parse(java.lang.String) */ public Date parse(String text) { try { return DATE_FORMAT.get().parse(text); } catch (ParseException e) { return Exceptions.throwIllegalArgumentException("DateFormat Exception!", e); } } /** * @see org.jrimum.utilix.text.Format#copy() */ public SimpleDateFormat copy(){ return (SimpleDateFormat) DATE_FORMAT.get().clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy