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

org.apache.wicket.datetime.PatternDateConverter Maven / Gradle / Ivy

There is a newer version: 8.0.0-M7
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.
 */
package org.apache.wicket.datetime;

import java.text.SimpleDateFormat;
import java.util.Locale;

import org.apache.wicket.datetime.markup.html.form.DateTextField;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;


/**
 * Date converter that uses Joda Time and can be configured to take the time zone difference between
 * clients and server into account. This converter is hard coded to use the provided custom date
 * pattern, no matter what current locale is used. See {@link SimpleDateFormat} for available
 * patterns.
 * 

* This converter is especially suited on a per-component base. *

* * @see SimpleDateFormat * @see StyleDateConverter * @see DateTextField * @see DateTime * @see DateTimeFormat * @see DateTimeZone * * @author eelcohillenius */ public class PatternDateConverter extends DateConverter { private static final long serialVersionUID = 1L; /** pattern to use. */ private final String datePattern; /** * Construct. *

* When applyTimeZoneDifference is true, the current time is applied on the parsed date, and the * date will be corrected for the time zone difference between the server and the client. For * instance, if I'm in Seattle and the server I'm working on is in Amsterdam, the server is 9 * hours ahead. So, if I'm inputting say 12/24 at a couple of hours before midnight, at the * server it is already 12/25. If this boolean is true, it will be transformed to 12/25, while * the client sees 12/24. *

* * @param datePattern * The pattern to use. Must be not null. See {@link SimpleDateFormat} for available * patterns. * @param applyTimeZoneDifference * whether to apply the difference in time zones between client and server * @throws IllegalArgumentException * in case the date pattern is null */ public PatternDateConverter(String datePattern, boolean applyTimeZoneDifference) { super(applyTimeZoneDifference); if (datePattern == null) { throw new IllegalArgumentException("datePattern must be not null"); } this.datePattern = datePattern; } /** * Gets the optional date pattern. * * @return datePattern */ @Override public final String getDatePattern(Locale locale) { return datePattern; } /** * @return formatter The formatter for the current conversion */ @Override protected DateTimeFormatter getFormat(Locale locale) { return DateTimeFormat.forPattern(datePattern).withLocale(locale).withPivotYear(2000); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy