Class JodaTimeContext
- java.lang.Object
- org.springframework.format.datetime.joda.JodaTimeContext
public class JodaTimeContext extends Object
A context that holds user-specific Joda-Time settings such as the user's Chronology (calendar system) and time zone.A
nullproperty value indicate the user has not specified a setting.- Since:
- 3.0
- Author:
- Keith Donald
- See Also:
JodaTimeContextHolder
Constructor Summary
Constructors Constructor Description JodaTimeContext()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ChronologygetChronology()Return the user's chronology (calendar system), if any.DateTimeFormattergetFormatter(DateTimeFormatter formatter)Get the DateTimeFormatter with the this context's settings applied to the baseformatter.DateTimeZonegetTimeZone()Return the user's time zone, if any.voidsetChronology(Chronology chronology)Set the user's chronology (calendar system).voidsetTimeZone(DateTimeZone timeZone)Set the user's time zone.
Constructor Detail
JodaTimeContext
public JodaTimeContext()
Method Detail
setChronology
public void setChronology(Chronology chronology)
Set the user's chronology (calendar system).
getChronology
public Chronology getChronology()
Return the user's chronology (calendar system), if any.
setTimeZone
public void setTimeZone(DateTimeZone timeZone)
Set the user's time zone.Alternatively, set a
TimeZoneAwareLocaleContextonLocaleContextHolder. This context class will fall back to checking the locale context if no setting has been provided here.
getTimeZone
public DateTimeZone getTimeZone()
Return the user's time zone, if any.
getFormatter
public DateTimeFormatter getFormatter(DateTimeFormatter formatter)
Get the DateTimeFormatter with the this context's settings applied to the baseformatter.- Parameters:
formatter- the base formatter that establishes default formatting rules, generally context-independent- Returns:
- the contextual DateTimeFormatter