Enum NERoomVirtualBackgroundSupportedType
-
- All Implemented Interfaces:
-
java.io.Serializable
,kotlin.Comparable
public enum NERoomVirtualBackgroundSupportedType extends Enum<NERoomVirtualBackgroundSupportedType>
设备支持级别。
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public class
NERoomVirtualBackgroundSupportedType.Companion
-
Enum Constant Summary
Enum Constants Enum Constant Description VIRTUAL_BACKGROUND_SUPPORT_FULL
当前设备支持该功能。
VIRTUAL_BACKGROUND_SUPPORT_HARDWARE_LIMIT
由于设备硬件或系统原因,当前设备不支持该功能。
VIRTUAL_BACKGROUND_SUPPORT_PERFORMANCE_LIMIT
由于设备性能不足,不支持该功能,但可以强制打开。 例如,低性能设备可以通过将 com.netease.yunxin.kit.roomkit.api.NERoomRtcBaseController.enableVirtualBackground 中参数force,设置为true 可强制打开虚拟背景功能。
-
Method Summary
Modifier and Type Method Description final NERoomVirtualBackgroundSupportedType
valueOf(String value)
Returns the enum constant of this type with the specified name. final Array<NERoomVirtualBackgroundSupportedType>
values()
Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final NERoomVirtualBackgroundSupportedType valueOf(String value)
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.)
-
values
final Array<NERoomVirtualBackgroundSupportedType> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-