Enum CamelRoute.Routes
- java.lang.Object
-
- java.lang.Enum<CamelRoute.Routes>
-
- org.apache.camel.quarkus.component.mail.CamelRoute.Routes
-
- All Implemented Interfaces:
Serializable,Comparable<CamelRoute.Routes>
- Enclosing class:
- CamelRoute
static enum CamelRoute.Routes extends Enum<CamelRoute.Routes>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description batchReceiveRouteconvertersRouteimapReceiveRouteimapsReceiveRoutepop3ReceiveRoutepop3sReceiveRoute
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CamelRoute.RoutesvalueOf(String name)Returns the enum constant of this type with the specified name.static CamelRoute.Routes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
convertersRoute
public static final CamelRoute.Routes convertersRoute
-
batchReceiveRoute
public static final CamelRoute.Routes batchReceiveRoute
-
imapReceiveRoute
public static final CamelRoute.Routes imapReceiveRoute
-
imapsReceiveRoute
public static final CamelRoute.Routes imapsReceiveRoute
-
pop3ReceiveRoute
public static final CamelRoute.Routes pop3ReceiveRoute
-
pop3sReceiveRoute
public static final CamelRoute.Routes pop3sReceiveRoute
-
-
Method Detail
-
values
public static CamelRoute.Routes[] 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 (CamelRoute.Routes c : CamelRoute.Routes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CamelRoute.Routes 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
-
-