static String | convert(Object value) - Convert the specified locale-sensitive value into a String.
|
static String | convert(Object value, Locale locale, String pattern) - Convert the specified locale-sensitive value into a String
using the paticular convertion pattern.
|
static String | convert(Object value, String pattern) - Convert the specified locale-sensitive value into a String
using the convertion pattern.
|
static Object | convert(String value, Class clazz) - Convert the specified value to an object of the specified class (if
possible).
|
static Object | convert(String value, Class clazz, Locale locale, String pattern) - Convert the specified value to an object of the specified class (if
possible) using the convertion pattern.
|
static Object | convert(String value, Class clazz, String pattern) - Convert the specified value to an object of the specified class (if
possible) using the convertion pattern.
|
static Object | convert(values[] , Class clazz) - Convert an array of specified values to an array of objects of the
specified class (if possible).
|
static Object | convert(values[] , Class clazz, Locale locale, String pattern) - Convert an array of specified values to an array of objects of the
specified class (if possible) using the convertion pattern.
|
static Object | convert(values[] , Class clazz, String pattern) - Convert an array of specified values to an array of objects of the
specified class (if possible) using the convertion pattern.
|
protected static FastHashMap | create(Locale locale) - Create all
LocaleConverter types for specified locale.
|
static void | deregister() - Remove any registered
LocaleConverter .
|
static void | deregister(Class clazz, Locale locale) - Remove any registered
LocaleConverter for the specified locale and Class.
|
static void | deregister(Locale locale) - Remove any registered
LocaleConverter for the specified locale.
|
static boolean | getApplyLocalized() - Gets applyLocalized.
|
static Locale | getDefaultLocale() - Gets the
Locale which will be used when
no Locale is passed to a method.
|
static LocaleConverter | lookup(Class clazz, Locale locale) - Look up and return any registered
LocaleConverter for the specified
destination class and locale; if there is no registered Converter, return
null .
|
protected static FastHashMap | lookup(Locale locale) - Look up and return any registered FastHashMap instance for the specified locale.
|
static void | register(LocaleConverter converter, Class clazz, Locale locale) - Register a custom
LocaleConverter for the specified destination
Class , replacing any previously registered converter.
|
static void | setApplyLocalized(boolean newApplyLocalized) - Sets applyLocalized.
|
static void | setDefaultLocale(Locale locale) - Sets the
Locale which will be used when
no Locale is passed to a method.
|