public enum EventId extends Enum<EventId> implements net.openhft.chronicle.wire.WireKey
| Enum Constant and Description |
|---|
heartbeat |
heartbeatReply |
onClientClosing |
onClosingReply |
userid |
| Modifier and Type | Method and Description |
|---|---|
static EventId |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventId[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventId heartbeat
public static final EventId heartbeatReply
public static final EventId onClientClosing
public static final EventId onClosingReply
public static final EventId userid
public static EventId[] values()
for (EventId c : EventId.values()) System.out.println(c);
public static EventId 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 © 2015. All rights reserved.