public static enum RtmpMessage.Kind extends Enum<RtmpMessage.Kind>
| Enum Constant and Description |
|---|
CONTROL |
HANDSHAKE_REQUEST |
HANDSHAKE_RESPONSE |
STREAM |
VERSION |
| Modifier and Type | Method and Description |
|---|---|
static RtmpMessage.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtmpMessage.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtmpMessage.Kind VERSION
public static final RtmpMessage.Kind HANDSHAKE_REQUEST
public static final RtmpMessage.Kind HANDSHAKE_RESPONSE
public static final RtmpMessage.Kind STREAM
public static final RtmpMessage.Kind CONTROL
public static RtmpMessage.Kind[] values()
for (RtmpMessage.Kind c : RtmpMessage.Kind.values()) System.out.println(c);
public static RtmpMessage.Kind 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.