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

com.arcusx.chrono.MonthsFormat Maven / Gradle / Ivy

The newest version!
/**
 * This software is written by arcus(x) GmbH and subject 
 * to a contract between arcus(x) and its customer.
 *
 * This software stays property of arcus(x) unless differing
 * arrangements between arcus(x) and its customer apply.
 *
 * arcus(x) GmbH
 * Bergiusstrasse 27
 * D-22765 Hamburg, Germany
 *
 * Tel.: +49 (0)40.333 102 92 
 * Fax.: +49 (0)40.333 102 93 
 * http://www.arcusx.com
 * mailto:[email protected]
 *
 */

package com.arcusx.chrono;


/**
 * 
 * Created on 22.02.2005, 17:13:16.
 *
 * @author conni
 * @version $Id$
 */
public abstract class MonthsFormat
{
	protected MonthsFormat()
	{
	}

	public abstract Months parse( String s );
	
	public String format( Months seq )
	{
		StringBuffer buf = new StringBuffer();
		format( seq, buf );
		
		return buf.toString();
	}

	public abstract void format( Months seq, StringBuffer buf );
}	




© 2015 - 2025 Weber Informatics LLC | Privacy Policy