Enum Class NEMeetingLanguage

java.lang.Object
java.lang.Enum<NEMeetingLanguage>
com.netease.yunxin.kit.meeting.sdk.NEMeetingLanguage
所有已实现的接口:
Serializable, Comparable<NEMeetingLanguage>, Constable

public enum NEMeetingLanguage extends Enum<NEMeetingLanguage>
组件当前支持的语言类型。通过NEMeetingKit.switchLanguage(NEMeetingLanguage, NECallback) 可切换语言。
  • 枚举常量详细资料

    • AUTOMATIC

      public static final NEMeetingLanguage AUTOMATIC
      根据当前的系统语言自动选择对应的语言类型。

      - 如果当前的系统语言为受支持的语言(中文、英文、日文)之一,则使用该语言;

      - 如果当前的系统语言不受支持,则使用英文。

    • CHINESE

      public static final NEMeetingLanguage CHINESE
      简体中文
    • ENGLISH

      public static final NEMeetingLanguage ENGLISH
      英文
    • JAPANESE

      public static final NEMeetingLanguage JAPANESE
      日文
  • 字段详细资料

    • languageCode

      public final String languageCode
  • 方法详细资料

    • values

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

      public static NEMeetingLanguage 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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值