summaryrefslogtreecommitdiff
path: root/android_icu4j
diff options
context:
space:
mode:
authorVictor Chang <vichang@google.com>2021-01-15 00:53:07 +0000
committerVictor Chang <vichang@google.com>2021-01-15 00:56:09 +0000
commitc774d6554094d4d2c6e07bf6b24ead6b4d39118f (patch)
tree8e400af4da8df4ad9660c6827f2fad186c499e19 /android_icu4j
parent2e163a7b2575f05ff595907a6520848e9c21c7e7 (diff)
downloadicu-c774d6554094d4d2c6e07bf6b24ead6b4d39118f.tar.gz
Remove reference to hidden classes in the java docicu67
Required to build the java doc. Test: m offline-sdk-referenceonly-docs Change-Id: I0a3e11a0eacfec169144652eda73de3057762912
Diffstat (limited to 'android_icu4j')
-rw-r--r--android_icu4j/src/main/java/android/icu/util/ULocale.java14
1 files changed, 0 insertions, 14 deletions
diff --git a/android_icu4j/src/main/java/android/icu/util/ULocale.java b/android_icu4j/src/main/java/android/icu/util/ULocale.java
index d81f4c8f2..9e268d0ba 100644
--- a/android_icu4j/src/main/java/android/icu/util/ULocale.java
+++ b/android_icu4j/src/main/java/android/icu/util/ULocale.java
@@ -1998,15 +1998,11 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
* availableLocales matched). No ULocale array element should be null; behavior is
* undefined if this is the case.
*
- * <p>This is a thin wrapper over {@link LocalePriorityList} + {@link LocaleMatcher}.
- *
* @param acceptLanguageList list in HTTP "Accept-Language:" format of acceptable locales
* @param availableLocales list of available locales. One of these will be returned.
* @param fallback if non-null, a 1-element array containing a boolean to be set with
* the fallback status
* @return one of the locales from the availableLocales list, or null if none match
- * @see LocaleMatcher
- * @see LocalePriorityList
*/
public static ULocale acceptLanguage(String acceptLanguageList, ULocale[] availableLocales,
boolean[] fallback) {
@@ -2043,14 +2039,11 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
* locale was used as a fallback (because nothing else in availableLocales matched).
* No ULocale array element should be null; behavior is undefined if this is the case.
*
- * <p>This is a thin wrapper over {@link LocaleMatcher}.
- *
* @param acceptLanguageList list of acceptable locales
* @param availableLocales list of available locales. One of these will be returned.
* @param fallback if non-null, a 1-element array containing a boolean to be set with
* the fallback status
* @return one of the locales from the availableLocales list, or null if none match
- * @see LocaleMatcher
*/
public static ULocale acceptLanguage(ULocale[] acceptLanguageList, ULocale[] availableLocales,
@@ -2089,15 +2082,11 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
* undefined if this is the case. This function will choose a locale from the
* ULocale.getAvailableLocales() list as available.
*
- * <p>This is a thin wrapper over {@link LocalePriorityList} + {@link LocaleMatcher}.
- *
* @param acceptLanguageList list in HTTP "Accept-Language:" format of acceptable locales
* @param fallback if non-null, a 1-element array containing a boolean to be set with
* the fallback status
* @return one of the locales from the ULocale.getAvailableLocales() list, or null if
* none match
- * @see LocaleMatcher
- * @see LocalePriorityList
*/
public static ULocale acceptLanguage(String acceptLanguageList, boolean[] fallback) {
return acceptLanguage(acceptLanguageList, ULocale.getAvailableLocales(),
@@ -2115,13 +2104,10 @@ public final class ULocale implements Serializable, Comparable<ULocale> {
* undefined if this is the case. This function will choose a locale from the
* ULocale.getAvailableLocales() list as available.
*
- * <p>This is a thin wrapper over {@link LocaleMatcher}.
- *
* @param acceptLanguageList ordered array of acceptable locales (preferred are listed first)
* @param fallback if non-null, a 1-element array containing a boolean to be set with
* the fallback status
* @return one of the locales from the ULocale.getAvailableLocales() list, or null if none match
- * @see LocaleMatcher
*/
public static ULocale acceptLanguage(ULocale[] acceptLanguageList, boolean[] fallback) {
return acceptLanguage(acceptLanguageList, ULocale.getAvailableLocales(),