org.apache.commons.convert
Class DateTimeConverters.StringToCalendar

java.lang.Object
  extended by org.apache.commons.convert.AbstractConverter<S,T>
      extended by org.apache.commons.convert.AbstractLocalizedConverter<String,Calendar>
          extended by org.apache.commons.convert.DateTimeConverters.StringToCalendar
All Implemented Interfaces:
Converter<String,Calendar>, ConverterLoader, LocalizedConverter<String,Calendar>
Enclosing class:
DateTimeConverters

public static class DateTimeConverters.StringToCalendar
extends AbstractLocalizedConverter<String,Calendar>

An object that converts a String to a java.util.Calendar.


Constructor Summary
DateTimeConverters.StringToCalendar()
           
 
Method Summary
 Calendar convert(String obj)
          Converts obj to a java.util.Calendar initialized to the default locale and time zone.
 Calendar convert(String obj, Locale locale, TimeZone timeZone, String formatString)
          Converts obj to a java.util.Calendar initialized to the supplied locale and time zone.
 
Methods inherited from class org.apache.commons.convert.AbstractLocalizedConverter
convert
 
Methods inherited from class org.apache.commons.convert.AbstractConverter
canConvert, getSourceClass, getTargetClass, loadConverters
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface org.apache.commons.convert.Converter
canConvert, getSourceClass, getTargetClass
 

Constructor Detail

DateTimeConverters.StringToCalendar

public DateTimeConverters.StringToCalendar()
Method Detail

convert

public Calendar convert(String obj)
                 throws ConversionException
Converts obj to a java.util.Calendar initialized to the default locale and time zone. The string must be formatted as DateTimeConverters.CALENDAR_FORMAT.

Parameters:
obj - The source Object to convert
Returns:
The converted Object
Throws:
ConversionException

convert

public Calendar convert(String obj,
                        Locale locale,
                        TimeZone timeZone,
                        String formatString)
                 throws ConversionException
Converts obj to a java.util.Calendar initialized to the supplied locale and time zone. If formatString is null, the string is formatted as DateTimeConverters.CALENDAR_FORMAT.

Parameters:
obj - The source Object to convert
locale - The locale used for conversion - must not be null
timeZone - The time zone used for conversion - must not be null
formatString - Optional formatting string
Returns:
The converted Object
Throws:
ConversionException


Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.