Enum Language

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Language>

    public enum Language
    extends java.lang.Enum<Language>
    • Enum Constant Detail

      • ARABIC

        public static final Language ARABIC
      • CHINESE

        public static final Language CHINESE
      • DANISH

        public static final Language DANISH
      • DUTCH

        public static final Language DUTCH
      • ENGLISH

        public static final Language ENGLISH
      • FINNISH

        public static final Language FINNISH
      • FRENCH

        public static final Language FRENCH
      • GERMAN

        public static final Language GERMAN
      • HUNGARIAN

        public static final Language HUNGARIAN
      • ITALIAN

        public static final Language ITALIAN
      • NORWEGIAN

        public static final Language NORWEGIAN
      • PORTUGUESE

        public static final Language PORTUGUESE
      • ROMANIAN

        public static final Language ROMANIAN
      • RUSSIAN

        public static final Language RUSSIAN
      • SPANISH

        public static final Language SPANISH
      • SWEDISH

        public static final Language SWEDISH
      • TAMIL

        public static final Language TAMIL
      • TURKISH

        public static final Language TURKISH
    • Method Detail

      • values

        public static Language[] 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 (Language c : Language.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Language valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getId

        public java.lang.String getId()