public static enum VidSourceBase.StreamType extends java.lang.Enum<VidSourceBase.StreamType>
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getStreamType()
获取视频流类型
|
static VidSourceBase.StreamType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static VidSourceBase.StreamType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VidSourceBase.StreamType video
public static final VidSourceBase.StreamType audio
public static VidSourceBase.StreamType[] values()
for (VidSourceBase.StreamType c : VidSourceBase.StreamType.values()) System.out.println(c);
public static VidSourceBase.StreamType 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 getStreamType()