public static enum RtmpDataMessage.DataKind extends Enum<RtmpDataMessage.DataKind>
| Enum Constant and Description |
|---|
BINARY |
DATA_START |
SAMPLE_ACCESS |
STREAM_METADATA |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static RtmpDataMessage.DataKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtmpDataMessage.DataKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtmpDataMessage.DataKind TEXT
public static final RtmpDataMessage.DataKind BINARY
public static final RtmpDataMessage.DataKind SAMPLE_ACCESS
public static final RtmpDataMessage.DataKind STREAM_METADATA
public static final RtmpDataMessage.DataKind DATA_START
public static RtmpDataMessage.DataKind[] values()
for (RtmpDataMessage.DataKind c : RtmpDataMessage.DataKind.values()) System.out.println(c);
public static RtmpDataMessage.DataKind valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014–2015. All rights reserved.