public static enum JmsEndpointBuilderFactory.JmsMessageType extends Enum<JmsEndpointBuilderFactory.JmsMessageType>
org.apache.camel.component.jms.JmsMessageType
enum.| Enum Constant and Description |
|---|
Blob |
Bytes |
Map |
Object |
Stream |
Text |
| Modifier and Type | Method and Description |
|---|---|
static JmsEndpointBuilderFactory.JmsMessageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JmsEndpointBuilderFactory.JmsMessageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JmsEndpointBuilderFactory.JmsMessageType Bytes
public static final JmsEndpointBuilderFactory.JmsMessageType Map
public static final JmsEndpointBuilderFactory.JmsMessageType Object
public static final JmsEndpointBuilderFactory.JmsMessageType Stream
public static final JmsEndpointBuilderFactory.JmsMessageType Text
public static final JmsEndpointBuilderFactory.JmsMessageType Blob
public static JmsEndpointBuilderFactory.JmsMessageType[] values()
for (JmsEndpointBuilderFactory.JmsMessageType c : JmsEndpointBuilderFactory.JmsMessageType.values()) System.out.println(c);
public static JmsEndpointBuilderFactory.JmsMessageType 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 nullApache Camel