|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<EPlaybackSockEventsMode> org.jmythapi.protocol.request.EPlaybackSockEventsMode
public enum EPlaybackSockEventsMode
This Enum
can be used to define, which types of events a client is interested to receive via a playback- or monitor
socket.
IBackend.annotatePlayback(String, EPlaybackSockEventsMode)
,
playbacksock.h,
IBackend.annotatePlayback(String, EPlaybackSockEventsMode)
Enum Constant Summary | |
---|---|
NON_SYSTEM
Non-system events. |
|
NONE
No events. |
|
NORMAL
All events. |
|
SYSTEM_ONLY
System-only events. |
Method Summary | |
---|---|
static EPlaybackSockEventsMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EPlaybackSockEventsMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final EPlaybackSockEventsMode NONE
The client wants to receive no events.
public static final EPlaybackSockEventsMode NORMAL
The client wants to receive all events.
public static final EPlaybackSockEventsMode NON_SYSTEM
The client wants to receive non-system events.
public static final EPlaybackSockEventsMode SYSTEM_ONLY
The client wants to receive only system events.
Method Detail |
---|
public static EPlaybackSockEventsMode[] values()
for (EPlaybackSockEventsMode c : EPlaybackSockEventsMode.values()) System.out.println(c);
public static EPlaybackSockEventsMode valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |