Enum ActiveMQEndpointBuilderFactory.ReplyToType
- java.lang.Object
-
- java.lang.Enum<ActiveMQEndpointBuilderFactory.ReplyToType>
-
- org.apache.camel.builder.endpoint.dsl.ActiveMQEndpointBuilderFactory.ReplyToType
-
- All Implemented Interfaces:
Serializable
,Comparable<ActiveMQEndpointBuilderFactory.ReplyToType>
- Enclosing interface:
- ActiveMQEndpointBuilderFactory
public static enum ActiveMQEndpointBuilderFactory.ReplyToType extends Enum<ActiveMQEndpointBuilderFactory.ReplyToType>
Proxy enum fororg.apache.camel.component.jms.ReplyToType
enum.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActiveMQEndpointBuilderFactory.ReplyToType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ActiveMQEndpointBuilderFactory.ReplyToType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Temporary
public static final ActiveMQEndpointBuilderFactory.ReplyToType Temporary
-
Shared
public static final ActiveMQEndpointBuilderFactory.ReplyToType Shared
-
Exclusive
public static final ActiveMQEndpointBuilderFactory.ReplyToType Exclusive
-
-
Method Detail
-
values
public static ActiveMQEndpointBuilderFactory.ReplyToType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ActiveMQEndpointBuilderFactory.ReplyToType c : ActiveMQEndpointBuilderFactory.ReplyToType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActiveMQEndpointBuilderFactory.ReplyToType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-