sun.util.locale.BaseLocale Java Examples

The following examples show how to use sun.util.locale.BaseLocale. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Locale.java    From Java8CN with Apache License 2.0 6 votes vote down vote up
/**
 * Deserializes this <code>Locale</code>.
 * @param in the <code>ObjectInputStream</code> to read
 * @throws IOException
 * @throws ClassNotFoundException
 * @throws IllformedLocaleException
 * @since 1.7
 */
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
    ObjectInputStream.GetField fields = in.readFields();
    String language = (String)fields.get("language", "");
    String script = (String)fields.get("script", "");
    String country = (String)fields.get("country", "");
    String variant = (String)fields.get("variant", "");
    String extStr = (String)fields.get("extensions", "");
    baseLocale = BaseLocale.getInstance(convertOldISOCodes(language), script, country, variant);
    if (extStr.length() > 0) {
        try {
            InternalLocaleBuilder bldr = new InternalLocaleBuilder();
            bldr.setExtensions(extStr);
            localeExtensions = bldr.getLocaleExtensions();
        } catch (LocaleSyntaxException e) {
            throw new IllformedLocaleException(e.getMessage());
        }
    } else {
        localeExtensions = null;
    }
}
 
Example #2
Source File: Locale.java    From dragonwell8_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns true if this Locale is equal to another object.  A Locale is
 * deemed equal to another Locale with identical language, script, country,
 * variant and extensions, and unequal to all other objects.
 *
 * @return true if this Locale is equal to the specified object.
 */
@Override
public boolean equals(Object obj) {
    if (this == obj)                      // quick check
        return true;
    if (!(obj instanceof Locale))
        return false;
    BaseLocale otherBase = ((Locale)obj).baseLocale;
    if (!baseLocale.equals(otherBase)) {
        return false;
    }
    if (localeExtensions == null) {
        return ((Locale)obj).localeExtensions == null;
    }
    return localeExtensions.equals(((Locale)obj).localeExtensions);
}
 
Example #3
Source File: Locale.java    From openjdk-8-source with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns true if this Locale is equal to another object.  A Locale is
 * deemed equal to another Locale with identical language, script, country,
 * variant and extensions, and unequal to all other objects.
 *
 * @return true if this Locale is equal to the specified object.
 */
@Override
public boolean equals(Object obj) {
    if (this == obj)                      // quick check
        return true;
    if (!(obj instanceof Locale))
        return false;
    BaseLocale otherBase = ((Locale)obj).baseLocale;
    if (!baseLocale.equals(otherBase)) {
        return false;
    }
    if (localeExtensions == null) {
        return ((Locale)obj).localeExtensions == null;
    }
    return localeExtensions.equals(((Locale)obj).localeExtensions);
}
 
Example #4
Source File: Locale.java    From jdk8u-jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Deserializes this <code>Locale</code>.
 * @param in the <code>ObjectInputStream</code> to read
 * @throws IOException
 * @throws ClassNotFoundException
 * @throws IllformedLocaleException
 * @since 1.7
 */
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
    ObjectInputStream.GetField fields = in.readFields();
    String language = (String)fields.get("language", "");
    String script = (String)fields.get("script", "");
    String country = (String)fields.get("country", "");
    String variant = (String)fields.get("variant", "");
    String extStr = (String)fields.get("extensions", "");
    baseLocale = BaseLocale.getInstance(convertOldISOCodes(language), script, country, variant);
    if (extStr.length() > 0) {
        try {
            InternalLocaleBuilder bldr = new InternalLocaleBuilder();
            bldr.setExtensions(extStr);
            localeExtensions = bldr.getLocaleExtensions();
        } catch (LocaleSyntaxException e) {
            throw new IllformedLocaleException(e.getMessage());
        }
    } else {
        localeExtensions = null;
    }
}
 
Example #5
Source File: Locale.java    From TencentKona-8 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns true if this Locale is equal to another object.  A Locale is
 * deemed equal to another Locale with identical language, script, country,
 * variant and extensions, and unequal to all other objects.
 *
 * @return true if this Locale is equal to the specified object.
 */
@Override
public boolean equals(Object obj) {
    if (this == obj)                      // quick check
        return true;
    if (!(obj instanceof Locale))
        return false;
    BaseLocale otherBase = ((Locale)obj).baseLocale;
    if (!baseLocale.equals(otherBase)) {
        return false;
    }
    if (localeExtensions == null) {
        return ((Locale)obj).localeExtensions == null;
    }
    return localeExtensions.equals(((Locale)obj).localeExtensions);
}
 
Example #6
Source File: Locale.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Deserializes this <code>Locale</code>.
 * @param in the <code>ObjectInputStream</code> to read
 * @throws IOException
 * @throws ClassNotFoundException
 * @throws IllformedLocaleException
 * @since 1.7
 */
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
    ObjectInputStream.GetField fields = in.readFields();
    String language = (String)fields.get("language", "");
    String script = (String)fields.get("script", "");
    String country = (String)fields.get("country", "");
    String variant = (String)fields.get("variant", "");
    String extStr = (String)fields.get("extensions", "");
    baseLocale = BaseLocale.getInstance(convertOldISOCodes(language), script, country, variant);
    if (extStr.length() > 0) {
        try {
            InternalLocaleBuilder bldr = new InternalLocaleBuilder();
            bldr.setExtensions(extStr);
            localeExtensions = bldr.getLocaleExtensions();
        } catch (LocaleSyntaxException e) {
            throw new IllformedLocaleException(e.getMessage());
        }
    } else {
        localeExtensions = null;
    }
}
 
Example #7
Source File: Locale.java    From Bytecoder with Apache License 2.0 6 votes vote down vote up
/**
 * Returns true if this Locale is equal to another object.  A Locale is
 * deemed equal to another Locale with identical language, script, country,
 * variant and extensions, and unequal to all other objects.
 *
 * @return true if this Locale is equal to the specified object.
 */
@Override
public boolean equals(Object obj) {
    if (this == obj)                      // quick check
        return true;
    if (!(obj instanceof Locale))
        return false;
    BaseLocale otherBase = ((Locale)obj).baseLocale;
    if (!baseLocale.equals(otherBase)) {
        return false;
    }
    if (localeExtensions == null) {
        return ((Locale)obj).localeExtensions == null;
    }
    return localeExtensions.equals(((Locale)obj).localeExtensions);
}
 
Example #8
Source File: Locale.java    From jdk8u_jdk with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns true if this Locale is equal to another object.  A Locale is
 * deemed equal to another Locale with identical language, script, country,
 * variant and extensions, and unequal to all other objects.
 *
 * @return true if this Locale is equal to the specified object.
 */
@Override
public boolean equals(Object obj) {
    if (this == obj)                      // quick check
        return true;
    if (!(obj instanceof Locale))
        return false;
    BaseLocale otherBase = ((Locale)obj).baseLocale;
    if (!baseLocale.equals(otherBase)) {
        return false;
    }
    if (localeExtensions == null) {
        return ((Locale)obj).localeExtensions == null;
    }
    return localeExtensions.equals(((Locale)obj).localeExtensions);
}
 
Example #9
Source File: Locale.java    From JDKSourceCode1.8 with MIT License 6 votes vote down vote up
/**
 * Returns true if this Locale is equal to another object.  A Locale is
 * deemed equal to another Locale with identical language, script, country,
 * variant and extensions, and unequal to all other objects.
 *
 * @return true if this Locale is equal to the specified object.
 */
@Override
public boolean equals(Object obj) {
    if (this == obj)                      // quick check
        return true;
    if (!(obj instanceof Locale))
        return false;
    BaseLocale otherBase = ((Locale)obj).baseLocale;
    if (!baseLocale.equals(otherBase)) {
        return false;
    }
    if (localeExtensions == null) {
        return ((Locale)obj).localeExtensions == null;
    }
    return localeExtensions.equals(((Locale)obj).localeExtensions);
}
 
Example #10
Source File: Locale.java    From openjdk-jdk8u with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Deserializes this <code>Locale</code>.
 * @param in the <code>ObjectInputStream</code> to read
 * @throws IOException
 * @throws ClassNotFoundException
 * @throws IllformedLocaleException
 * @since 1.7
 */
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
    ObjectInputStream.GetField fields = in.readFields();
    String language = (String)fields.get("language", "");
    String script = (String)fields.get("script", "");
    String country = (String)fields.get("country", "");
    String variant = (String)fields.get("variant", "");
    String extStr = (String)fields.get("extensions", "");
    baseLocale = BaseLocale.getInstance(convertOldISOCodes(language), script, country, variant);
    if (extStr.length() > 0) {
        try {
            InternalLocaleBuilder bldr = new InternalLocaleBuilder();
            bldr.setExtensions(extStr);
            localeExtensions = bldr.getLocaleExtensions();
        } catch (LocaleSyntaxException e) {
            throw new IllformedLocaleException(e.getMessage());
        }
    } else {
        localeExtensions = null;
    }
}
 
Example #11
Source File: Locale.java    From openjdk-jdk9 with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Deserializes this <code>Locale</code>.
 * @param in the <code>ObjectInputStream</code> to read
 * @throws IOException
 * @throws ClassNotFoundException
 * @throws IllformedLocaleException
 * @since 1.7
 */
private void readObject(ObjectInputStream in) throws IOException, ClassNotFoundException {
    ObjectInputStream.GetField fields = in.readFields();
    String language = (String)fields.get("language", "");
    String script = (String)fields.get("script", "");
    String country = (String)fields.get("country", "");
    String variant = (String)fields.get("variant", "");
    String extStr = (String)fields.get("extensions", "");
    baseLocale = BaseLocale.getInstance(convertOldISOCodes(language), script, country, variant);
    if (extStr.length() > 0) {
        try {
            InternalLocaleBuilder bldr = new InternalLocaleBuilder();
            bldr.setExtensions(extStr);
            localeExtensions = bldr.getLocaleExtensions();
        } catch (LocaleSyntaxException e) {
            throw new IllformedLocaleException(e.getMessage());
        }
    } else {
        localeExtensions = null;
    }
}
 
Example #12
Source File: Locale.java    From hottub with GNU General Public License v2.0 6 votes vote down vote up
/**
 * Returns true if this Locale is equal to another object.  A Locale is
 * deemed equal to another Locale with identical language, script, country,
 * variant and extensions, and unequal to all other objects.
 *
 * @return true if this Locale is equal to the specified object.
 */
@Override
public boolean equals(Object obj) {
    if (this == obj)                      // quick check
        return true;
    if (!(obj instanceof Locale))
        return false;
    BaseLocale otherBase = ((Locale)obj).baseLocale;
    if (!baseLocale.equals(otherBase)) {
        return false;
    }
    if (localeExtensions == null) {
        return ((Locale)obj).localeExtensions == null;
    }
    return localeExtensions.equals(((Locale)obj).localeExtensions);
}
 
Example #13
Source File: Locale.java    From TencentKona-8 with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #14
Source File: Locale.java    From jdk8u-dev-jdk with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #15
Source File: Locale.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
/**
 * This method must be called only for creating the Locale.*
 * constants due to making shortcuts.
 */
private static Locale createConstant(byte baseType) {
    BaseLocale base = BaseLocale.constantBaseLocales[baseType];
    Locale locale = new Locale(base, null);
    CONSTANT_LOCALES.put(base, locale);
    return locale;
}
 
Example #16
Source File: Locale.java    From openjdk-8 with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #17
Source File: Locale.java    From dragonwell8_jdk with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #18
Source File: Locale.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #19
Source File: Locale.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #20
Source File: Locale.java    From jdk8u-jdk with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #21
Source File: Locale.java    From hottub with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #22
Source File: Locale.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #23
Source File: Locale.java    From jdk8u60 with GNU General Public License v2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #24
Source File: Locale.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #25
Source File: Locale.java    From j2objc with Apache License 2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #26
Source File: Locale.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
static Locale getInstance(String language, String script, String country,
                                  String variant, LocaleExtensions extensions) {
    if (language== null || script == null || country == null || variant == null) {
        throw new NullPointerException();
    }

    if (extensions == null) {
        extensions = getCompatibilityExtensions(language, script, country, variant);
    }

    BaseLocale baseloc = BaseLocale.getInstance(language, script, country, variant);
    return getInstance(baseloc, extensions);
}
 
Example #27
Source File: Locale.java    From JDKSourceCode1.8 with MIT License 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #28
Source File: Locale.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
private LocaleKey(BaseLocale baseLocale, LocaleExtensions extensions) {
    base = baseLocale;
    exts = extensions;

    // Calculate the hash value here because it's always used.
    int h = base.hashCode();
    if (exts != null) {
        h ^= exts.hashCode();
    }
    hash = h;
}
 
Example #29
Source File: Locale.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
/**
 * Private constructor used by getInstance method
 */
private Locale(BaseLocale baseLocale, LocaleExtensions extensions) {
    this.baseLocale = baseLocale;
    this.localeExtensions = extensions;
}
 
Example #30
Source File: Locale.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 4 votes vote down vote up
/**
 * This method must be called only for creating the Locale.*
 * constants due to making shortcuts.
 */
private static Locale createConstant(String lang, String country) {
    BaseLocale base = BaseLocale.createInstance(lang, country);
    return getInstance(base, null);
}