public enum PropagationMode extends Enum<PropagationMode>
| Enum Constant and Description |
|---|
JMS_QUEUE |
JMS_TOPIC |
LOCAL |
MIME_HEADER |
ONEWAY |
RMI |
SOAP |
THREAD |
TRANSACTION |
| Modifier and Type | Method and Description |
|---|---|
static EnumSet<PropagationMode> |
defaultSet() |
static EnumSet<PropagationMode> |
defaultSetOneway() |
static PropagationMode |
fromOrdinal(int ordinal)
A utility method for getting a PropagationMode given that we know its
ordinal value.
|
static PropagationMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropagationMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropagationMode LOCAL
public static final PropagationMode THREAD
public static final PropagationMode RMI
public static final PropagationMode TRANSACTION
public static final PropagationMode JMS_QUEUE
public static final PropagationMode JMS_TOPIC
public static final PropagationMode SOAP
public static final PropagationMode MIME_HEADER
public static final PropagationMode ONEWAY
public static PropagationMode[] values()
for (PropagationMode c : PropagationMode.values()) System.out.println(c);
public static PropagationMode 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 nullpublic static PropagationMode fromOrdinal(int ordinal)
ordinal - public static EnumSet<PropagationMode> defaultSet()
public static EnumSet<PropagationMode> defaultSetOneway()
Copyright © 2017. All rights reserved.