public static enum STOMP.ClientVerb extends java.lang.Enum<STOMP.ClientVerb>
Enum Constant and Description |
---|
ABORT |
ACK |
BEGIN |
COMMIT |
CONNECT |
DISCONNECT |
SEND |
SUBSCRIBE |
UNSUBSCRIBE |
Modifier and Type | Method and Description |
---|---|
static STOMP.ClientVerb |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static STOMP.ClientVerb[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STOMP.ClientVerb CONNECT
public static final STOMP.ClientVerb SEND
public static final STOMP.ClientVerb SUBSCRIBE
public static final STOMP.ClientVerb UNSUBSCRIBE
public static final STOMP.ClientVerb BEGIN
public static final STOMP.ClientVerb COMMIT
public static final STOMP.ClientVerb ABORT
public static final STOMP.ClientVerb ACK
public static final STOMP.ClientVerb DISCONNECT
public static STOMP.ClientVerb[] values()
for (STOMP.ClientVerb c : STOMP.ClientVerb.values()) System.out.println(c);
public static STOMP.ClientVerb 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 © 1998-2020 Red Hat. All Rights Reserved.