convertEnumValue static method
- @Deprecated('No longer maintained. Interactive live streaming is discontinued.')
- int interfaceValue
原生接口返回值转为对应枚举值
interfaceValue 原生接口返回值
returns 枚举值
Implementation
@Deprecated('No longer maintained. Interactive live streaming is discontinued.')
static AlivcLivePlayerError convertEnumValue(int interfaceValue) {
switch (interfaceValue) {
case 1:
return AlivcLivePlayerError.streamNotFound;
case 2:
return AlivcLivePlayerError.streamStopped;
}
return AlivcLivePlayerError.streamNotFound;
}