Enum ELanguage

    • Method Detail

      • values

        public static ELanguage[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ELanguage c : ELanguage.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ELanguage valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getDisplayName

        public String getDisplayName​(Locale l)
        Specified by:
        getDisplayName in interface INamedUiElement
        Returns:
        Wert, der das entsprechende Objekt an Oberfläche repräsentiert (wird i.A. zur Laufzeit ermittelt).
      • getLocale

        public Locale getLocale()
      • getByLocale

        public static ELanguage getByLocale​(Locale locale)
        Finds the best ELanguage for the given locale. If no exact match can be found, the language with the matching language code is returned, if any (e.g. EN for the locale en_US).
        Parameters:
        locale - Locale to check.
        Returns:
        The ELanguage that best matches the given locale, or null if no language matches at all.
      • getSupportedLocale

        @Nullable
        public static Locale getSupportedLocale​(Locale candidate)
        Gets the supported locale for the given locale candidate if possible. Countries & variants of the locale are ignored. E.g. if a locale candidate de_DE is given then the supported locale de will be returned.
        Parameters:
        candidate - locale to determine the supported locale for.
        Returns:
        the supported locale for the given candidate or null if none could be found.