public final class CurrentLocale extends Object
Note that this is an inheritable thread local so it is automatically inherited from parent to child thread. Of course, if the child thread is part of a thread pool, you will still need to manually propagate from parent to child.
Modifier and Type | Method and Description |
---|---|
static void |
clear()
Clears the locale for the current thread.
|
static Locale |
get()
Gets the locale from the current thread.
|
static boolean |
isSet()
Returns true if a thread-local locale is specified on the current thread.
|
static void |
set(Locale locale)
Sets the locale for the current thread.
|
public static void set(Locale locale)
locale
- The locale to use.public static void clear()
public static Locale get()
Locale.getDefault
if no locale is specified.public static boolean isSet()
Copyright © 2010–2018 ForgeRock AS. All rights reserved.