public enum EventId extends Enum<EventId> implements net.openhft.chronicle.wire.WireKey
| Enum Constant and Description |
|---|
clientId |
domain |
heartbeat |
heartbeatReply |
hostId |
onClientClosing |
onClosingReply |
securityToken |
sessionMode |
userId |
wireType |
| 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 final EventId sessionMode
public static final EventId domain
public static final EventId securityToken
public static final EventId clientId
public static final EventId wireType
public static final EventId hostId
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 © 2023. All rights reserved.