public enum QueueMsgType extends java.lang.Enum<QueueMsgType>
QueueMsg may
be set to one of these to indicate the specific RDMQueueMsg class.QueueClose,
QueueRefresh,
QueueRequest,
QueueStatus,
QueueAck,
QueueData,
QueueDataExpired| Enum Constant and Description |
|---|
ACK
(5) Queue Ack
|
CLOSE
(2) Queue Close
|
DATA
(6) Queue Data
|
DATAEXPIRED
(7) Queue Data Expired
|
REFRESH
(3) Queue Refresh
|
REQUEST
(1) Queue Request
|
STATUS
(4) Queue Status
|
UNKNOWN
(0) Unknown
|
| Modifier and Type | Method and Description |
|---|---|
static QueueMsgType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QueueMsgType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueMsgType UNKNOWN
public static final QueueMsgType REQUEST
public static final QueueMsgType CLOSE
public static final QueueMsgType REFRESH
public static final QueueMsgType STATUS
public static final QueueMsgType ACK
public static final QueueMsgType DATA
public static final QueueMsgType DATAEXPIRED
public static QueueMsgType[] values()
for (QueueMsgType c : QueueMsgType.values()) System.out.println(c);
public static QueueMsgType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright @ 2019 Thomson Reuters. All Rights Reserved.