Class SimpleTimeZoneAwareLocaleContext
java.lang.Object
org.springframework.context.i18n.SimpleLocaleContext
org.springframework.context.i18n.SimpleTimeZoneAwareLocaleContext
- All Implemented Interfaces:
LocaleContext, TimeZoneAwareLocaleContext
public class SimpleTimeZoneAwareLocaleContext
extends SimpleLocaleContext
implements TimeZoneAwareLocaleContext
Simple implementation of the
TimeZoneAwareLocaleContext interface,
always returning a specified Locale and TimeZone.
Note: Prefer the use of SimpleLocaleContext when only setting
a Locale but no TimeZone.
- Since:
- 4.0
- Author:
- Juergen Hoeller, Nicholas Williams
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSimpleTimeZoneAwareLocaleContext(@Nullable Locale locale, @Nullable TimeZone timeZone) Create a new SimpleTimeZoneAwareLocaleContext that exposes the specified Locale and TimeZone. -
Method Summary
Modifier and TypeMethodDescriptionReturn the current TimeZone, which can be fixed or determined dynamically, depending on the implementation strategy.toString()Methods inherited from class SimpleLocaleContext
getLocaleMethods inherited from class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface LocaleContext
getLocale
-
Constructor Details
-
SimpleTimeZoneAwareLocaleContext
Create a new SimpleTimeZoneAwareLocaleContext that exposes the specified Locale and TimeZone. EverySimpleLocaleContext.getLocale()call will return the given Locale, and everygetTimeZone()call will return the given TimeZone.- Parameters:
locale- the Locale to exposetimeZone- the TimeZone to expose
-
-
Method Details
-
getTimeZone
Description copied from interface:TimeZoneAwareLocaleContextReturn the current TimeZone, which can be fixed or determined dynamically, depending on the implementation strategy.- Specified by:
getTimeZonein interfaceTimeZoneAwareLocaleContext- Returns:
- the current TimeZone, or
nullif no specific TimeZone associated
-
toString
- Overrides:
toStringin classSimpleLocaleContext
-