Enum ELanguage

java.lang.Object
java.lang.Enum<ELanguage>
de.xima.fc.mdl.enums.ELanguage
All Implemented Interfaces:
INamedUiElement, Serializable, Comparable<ELanguage>

public enum ELanguage extends Enum<ELanguage> implements INamedUiElement
Supported default languages for the formcycle backend.
Author:
XIMA MEDIA GmbH
  • Enum Constant Details

  • Method Details

    • values

      public static ELanguage[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      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()
    • all

      @Deprecated public static ELanguage[] all()
      Deprecated.
      Returns:
      A list of all enum members.
    • 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.
    • valueOfOrNull

      public static ELanguage valueOfOrNull(String string)
    • 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.