Interface ThreadLocale
-
- All Known Implementing Classes:
ThreadLocaleImpl
public interface ThreadLocale
Stores the locale for the current thread. This value persists untilRegistry.cleanupThread()
is invoked.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Locale
getLocale()
Returns the thread's locale, which will be the JVM's default locale, untilsetLocale(Locale)
is invoked.void
setLocale(java.util.Locale locale)
Updates the locale for the current thread.
-
-
-
Method Detail
-
setLocale
void setLocale(java.util.Locale locale)
Updates the locale for the current thread.- Parameters:
locale
- the new locale (may not be null)
-
getLocale
java.util.Locale getLocale()
Returns the thread's locale, which will be the JVM's default locale, untilsetLocale(Locale)
is invoked.- Returns:
- the thread's locale
-
-