org.red5.server.api.event
public static enum IEvent.Type extends Enum<IEvent.Type>
Enum Constant and Description |
---|
CLIENT |
SERVER |
SERVICE_CALL |
SHARED_OBJECT |
STATUS |
STREAM_CONTROL |
STREAM_DATA |
SYSTEM |
Modifier and Type | Method and Description |
---|---|
static IEvent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IEvent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IEvent.Type SYSTEM
public static final IEvent.Type STATUS
public static final IEvent.Type SERVICE_CALL
public static final IEvent.Type SHARED_OBJECT
public static final IEvent.Type STREAM_CONTROL
public static final IEvent.Type STREAM_DATA
public static final IEvent.Type CLIENT
public static final IEvent.Type SERVER
public static IEvent.Type[] values()
for (IEvent.Type c : IEvent.Type.values()) System.out.println(c);
public static IEvent.Type 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 © 2006-2012 The Red5 Project