org.apache.commons.convert
Class DateTimeConverters.LongToCalendar
java.lang.Object
org.apache.commons.convert.AbstractConverter<S,T>
org.apache.commons.convert.AbstractLocalizedConverter<Long,Calendar>
org.apache.commons.convert.DateTimeConverters.LongToCalendar
- All Implemented Interfaces:
- Converter<Long,Calendar>, ConverterLoader, LocalizedConverter<Long,Calendar>
- Enclosing class:
- DateTimeConverters
public static class DateTimeConverters.LongToCalendar
- extends AbstractLocalizedConverter<Long,Calendar>
An object that converts a Long to a
Calendar.
|
Method Summary |
Calendar |
convert(Long obj)
Returns obj converted to a Calendar,
initialized with the default locale and time zone. |
Calendar |
convert(Long obj,
Locale locale,
TimeZone timeZone,
String formatString)
Returns obj converted to a Calendar,
initialized with the specified locale and time zone. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
DateTimeConverters.LongToCalendar
public DateTimeConverters.LongToCalendar()
convert
public Calendar convert(Long obj)
throws ConversionException
- Returns
obj converted to a Calendar,
initialized with the default locale and time zone.
- Parameters:
obj - The source Object to convert
- Returns:
- The converted
Object
- Throws:
ConversionException
convert
public Calendar convert(Long obj,
Locale locale,
TimeZone timeZone,
String formatString)
throws ConversionException
- Returns
obj converted to a Calendar,
initialized with the specified locale and time zone. The
formatString parameter is ignored.
- Parameters:
obj - The source Object to convertlocale - The locale used for conversion - must not be nulltimeZone - The time zone used for conversion - must not be nullformatString - Optional formatting string
- Returns:
- The converted
Object
- Throws:
ConversionException
Copyright © 2003-2013 The Apache Software Foundation. All Rights Reserved.