io.konik.zugferd.unqualified.ZfDateDay Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of konik Show documentation
Show all versions of konik Show documentation
Konik the ZUGFeRD processing library
/* Copyright (C) 2014 konik.io
*
* This file is part of the Konik library.
*
* The Konik library is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* The Konik library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with the Konik library. If not, see .
*/
package io.konik.zugferd.unqualified;
import java.text.SimpleDateFormat;
import java.util.Date;
/**
* The ZUGFeRD Date with year, month and day. Time
*/
public class ZfDateDay extends ZfDate {
private static final long serialVersionUID = -467516960528526434L;
/** The code format. */
public static final String CODE = "102";
/** The date pattern. */
public static final String DATE_PATTERN = "yyyyMMdd";
private static final ThreadLocal formatter = new ThreadLocal() {
@Override
protected SimpleDateFormat initialValue() {
return new SimpleDateFormat(DATE_PATTERN);
}
};
/**
* Instantiates a new zf date day.
*/
public ZfDateDay() {
super();
}
/**
* Instantiates a new zf date day.
*
* @param date the date
*/
public ZfDateDay(Date date) {
super(date);
}
/**
* Instantiates a new zf date day.
*
* @param date the date
*/
public ZfDateDay(long date) {
super(date);
}
/**
* Instantiates a new zf date day.
*
* @param formattedDate the formatted date
*/
public ZfDateDay(String formattedDate) {
super(formattedDate);
}
/**
* Gets the format code.
*
* @return the format code
*/
@Override
public String getFormatCode() {
return CODE;
}
/**
* Gets the formatter.
*
* @return the formatter
*/
@Override
public SimpleDateFormat getFormatter() {
return formatter.get();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy