public enum MessageProcessingHintType extends java.lang.Enum<MessageProcessingHintType>
| Enum Constant and Description |
|---|
no_copy |
no_permanent_store |
no_store |
store |
| Modifier and Type | Method and Description |
|---|---|
static MessageProcessingHintType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MessageProcessingHintType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessageProcessingHintType no_permanent_store
public static final MessageProcessingHintType no_store
public static final MessageProcessingHintType no_copy
public static final MessageProcessingHintType store
public static MessageProcessingHintType[] values()
for (MessageProcessingHintType c : MessageProcessingHintType.values()) System.out.println(c);
public static MessageProcessingHintType 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 null