public static enum RtmpCommandMessage.CommandKind extends Enum<RtmpCommandMessage.CommandKind>
| Enum Constant and Description |
|---|
CONNECT |
CONNECT_RESULT |
CREATE_STREAM |
CREATE_STREAM_RESULT |
DELETE_STREAM |
PLAY |
PLAY_RESONSE |
PUBLISH |
PUBLISH_RESPONSE |
| Modifier and Type | Method and Description |
|---|---|
static RtmpCommandMessage.CommandKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtmpCommandMessage.CommandKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtmpCommandMessage.CommandKind CONNECT
public static final RtmpCommandMessage.CommandKind CREATE_STREAM
public static final RtmpCommandMessage.CommandKind DELETE_STREAM
public static final RtmpCommandMessage.CommandKind CONNECT_RESULT
public static final RtmpCommandMessage.CommandKind CREATE_STREAM_RESULT
public static final RtmpCommandMessage.CommandKind PLAY
public static final RtmpCommandMessage.CommandKind PLAY_RESONSE
public static final RtmpCommandMessage.CommandKind PUBLISH
public static final RtmpCommandMessage.CommandKind PUBLISH_RESPONSE
public static RtmpCommandMessage.CommandKind[] values()
for (RtmpCommandMessage.CommandKind c : RtmpCommandMessage.CommandKind.values()) System.out.println(c);
public static RtmpCommandMessage.CommandKind 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.