public static enum Constants.MEDIA_TRACE_EVENT extends java.lang.Enum<Constants.MEDIA_TRACE_EVENT>
Enum Constant and Description |
---|
MEDIA_TRACE_EVENT_VIDEO_DECODED
1: The media frame has been decoded.
|
MEDIA_TRACE_EVENT_VIDEO_RENDERED
0: The media frame has been rendered.
|
Modifier and Type | Method and Description |
---|---|
static Constants.MEDIA_TRACE_EVENT |
fromInt(int value) |
int |
getValue() |
static Constants.MEDIA_TRACE_EVENT |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.MEDIA_TRACE_EVENT[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.MEDIA_TRACE_EVENT MEDIA_TRACE_EVENT_VIDEO_RENDERED
public static final Constants.MEDIA_TRACE_EVENT MEDIA_TRACE_EVENT_VIDEO_DECODED
public static Constants.MEDIA_TRACE_EVENT[] values()
for (Constants.MEDIA_TRACE_EVENT c : Constants.MEDIA_TRACE_EVENT.values()) System.out.println(c);
public static Constants.MEDIA_TRACE_EVENT 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 int getValue()
public static Constants.MEDIA_TRACE_EVENT fromInt(int value)