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

org.simpleframework.xml.transform.GregorianCalendarTransform Maven / Gradle / Ivy

Go to download

Simple is a high performance XML serialization and configuration framework for Java

The newest version!
/*
 * GregorialCalendarTransform.java May 2007
 *
 * Copyright (C) 2007, Niall Gallagher 
 *
 * 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.
 */

package org.simpleframework.xml.transform;

import java.util.GregorianCalendar;
import java.util.Date;

/**
 * The DateTransform is used to transform calendar
 * values to and from string representations, which will be inserted
 * in the generated XML document as the value place holder. The
 * value must be readable and writable in the same format. Fields
 * and methods annotated with the XML attribute annotation will use
 * this to persist and retrieve the value to and from the XML source.
 * 
 * 
 *    @Attribute
 *    private GregorianCalendar date;
 *    
 * 
* As well as the XML attribute values using transforms, fields and * methods annotated with the XML element annotation will use this. * Aside from the obvious difference, the element annotation has an * advantage over the attribute annotation in that it can maintain * any references using the CycleStrategy object. * * @author Niall Gallagher */ class GregorianCalendarTransform implements Transform { /** * This is the date transform used to parse and format dates. */ private final DateTransform transform; /** * Constructor for the GregorianCalendarTransform * object. This is used to create a transform using a default * date format pattern. The format chosen for the default date * uses 2007-05-02 12:22:10.000 GMT like dates. */ public GregorianCalendarTransform() throws Exception { this(Date.class); } /** * Constructor for the GregorianCalendarTransform * object. This is used to create a transform using a default * date format pattern. The format should typically contain * enough information to create the date using a different * locale or time zone between read and write operations. * * @param type this is the type of date to be transformed */ public GregorianCalendarTransform(Class type) throws Exception { this.transform = new DateTransform(type); } /** * This method is used to convert the string value given to an * appropriate representation. This is used when an object is * being deserialized from the XML document and the value for * the string representation is required. * * @param date the string representation of the date value * * @return this returns an appropriate instanced to be used */ public GregorianCalendar read(String date) throws Exception { return read(transform.read(date)); } /** * This method is used to convert the string value given to an * appropriate representation. This is used when an object is * being deserialized from the XML document and the value for * the string representation is required. * * @param date the string representation of the date value * * @return this returns an appropriate instanced to be used */ private GregorianCalendar read(Date date) throws Exception { GregorianCalendar calendar = new GregorianCalendar(); if(date != null) { calendar.setTime(date); } return calendar; } /** * This method is used to convert the provided value into an XML * usable format. This is used in the serialization process when * there is a need to convert a field value in to a string so * that that value can be written as a valid XML entity. * * @param date this is the value to be converted to a string * * @return this is the string representation of the given date */ public String write(GregorianCalendar date) throws Exception { return transform.write(date.getTime()); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy