public enum GrouperMessageQueueType extends java.lang.Enum<GrouperMessageQueueType>
Enum Constant and Description |
---|
queue
queue is when you send to one destination, or receive from a destination
|
topic
sending to a topic can cause sending to multiple queues
|
Modifier and Type | Method and Description |
---|---|
static GrouperMessageQueueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GrouperMessageQueueType |
valueOfIgnoreCase(java.lang.String input,
boolean exceptionIfNotFound)
convert a string to a queue type
|
static GrouperMessageQueueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GrouperMessageQueueType queue
public static final GrouperMessageQueueType topic
public static GrouperMessageQueueType[] values()
for (GrouperMessageQueueType c : GrouperMessageQueueType.values()) System.out.println(c);
public static GrouperMessageQueueType 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 nullpublic static GrouperMessageQueueType valueOfIgnoreCase(java.lang.String input, boolean exceptionIfNotFound)
input
- exceptionIfNotFound
-