Enum Class Language

java.lang.Object
java.lang.Enum<Language>
io.openems.common.session.Language
All Implemented Interfaces:
Serializable, Comparable<Language>, Constable

public enum Language extends Enum<Language>
  • Enum Constant Details

  • Field Details

    • DEFAULT

      public static final Language DEFAULT
  • Method Details

    • values

      public static Language[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Language valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • from

      public static Language from(String languageKey) throws OpenemsException
      Get Language for given key of the language. If the language key does not exist, EN is returned as default. The given key is removed all leading and trailing whitespaces and converts all characters to upper case.
      Parameters:
      languageKey - to get the Language
      Returns:
      the founded Language or throws an exception
      Throws:
      OpenemsException - on error
    • from

      public static Language from(Optional<String> languageKey) throws OpenemsException
      Get Language for given key of the language. If the language key does not exist, EN is returned as default. The given key is removed all leading and trailing whitespaces and converts all characters to upper case.
      Parameters:
      languageKey - to get the Language
      Returns:
      the founded Language or throws an exception
      Throws:
      OpenemsException - on error
    • getLocal

      public Locale getLocal()