public static enum VidSourceBase.OutputType extends java.lang.Enum<VidSourceBase.OutputType>
Enum Constant and Description |
---|
cdn
加速地址。(默认)
|
oss
回源地址。仅支持播放格式为MP4的OSS地址。
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getOutputType()
获取视频流类型
|
static VidSourceBase.OutputType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VidSourceBase.OutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VidSourceBase.OutputType oss
public static final VidSourceBase.OutputType cdn
public static VidSourceBase.OutputType[] values()
for (VidSourceBase.OutputType c : VidSourceBase.OutputType.values()) System.out.println(c);
public static VidSourceBase.OutputType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getOutputType()