Enum Class NEMenuVisibility
- 所有已实现的接口:
Serializable
,Comparable<NEMenuVisibility>
,Constable
菜单项可见性枚举值
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量说明始终可见主持人不可见SIP/H323不可见仅对会议主持人可见,联席主持人不可见仅主持人可见仅对会议创建者可见 -
方法概要
修饰符和类型方法说明static NEMenuVisibility
Returns the enum constant of this class with the specified name.static NEMenuVisibility[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
VISIBLE_ALWAYS
始终可见 -
VISIBLE_EXCLUDE_HOST
主持人不可见 -
VISIBLE_TO_HOST_ONLY
仅主持人可见 -
VISIBLE_EXCLUDE_ROOM_SYSTEM_DEVICE
SIP/H323不可见 -
VISIBLE_TO_OWNER_ONLY
仅对会议创建者可见 -
VISIBLE_TO_HOST_EXCLUDE_CO_HOST
仅对会议主持人可见,联席主持人不可见
-
-
方法详细资料
-
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
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 nameNullPointerException
- 如果参数为空值
-