android.support.v4.text
Class ICUCompat

java.lang.Object
  extended by android.support.v4.text.ICUCompat

public class ICUCompat
extends java.lang.Object


Constructor Summary
ICUCompat()
           
 
Method Summary
static java.lang.String addLikelySubtags(java.lang.String locale)
          Add the likely subtags for a provided locale ID, per the algorithm described in the following CLDR technical report: http://www.unicode.org/reports/tr35/#Likely_Subtags If locale is already in the maximal form, or there is no data available for maximization, it will be just returned.
static java.lang.String getScript(java.lang.String locale)
          Returns the script (language code) of a script.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ICUCompat

public ICUCompat()
Method Detail

getScript

public static java.lang.String getScript(java.lang.String locale)
Returns the script (language code) of a script.

Parameters:
locale - The locale.
Returns:
a String representing the script (language code) of the locale.

addLikelySubtags

public static java.lang.String addLikelySubtags(java.lang.String locale)
Add the likely subtags for a provided locale ID, per the algorithm described in the following CLDR technical report: http://www.unicode.org/reports/tr35/#Likely_Subtags If locale is already in the maximal form, or there is no data available for maximization, it will be just returned. For example, "und-Zzzz" cannot be maximized, since there is no reasonable maximization. Examples: "en" maximizes to "en_Latn_US" "de" maximizes to "de_Latn_US" "sr" maximizes to "sr_Cyrl_RS" "sh" maximizes to "sr_Latn_RS" (Note this will not reverse.) "zh_Hani" maximizes to "zh_Hans_CN" (Note this will not reverse.)

Parameters:
locale - The locale to maximize
Returns:
the maximized locale