Package io.quarkus.vertx.http.deployment
Enum RouteBuildItem.RouteType
- java.lang.Object
-
- java.lang.Enum<RouteBuildItem.RouteType>
-
- io.quarkus.vertx.http.deployment.RouteBuildItem.RouteType
-
- All Implemented Interfaces:
Serializable,Comparable<RouteBuildItem.RouteType>
- Enclosing class:
- RouteBuildItem
public static enum RouteBuildItem.RouteType extends Enum<RouteBuildItem.RouteType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSOLUTE_ROUTEAPPLICATION_ROUTEFRAMEWORK_ROUTE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RouteBuildItem.RouteTypevalueOf(String name)Returns the enum constant of this type with the specified name.static RouteBuildItem.RouteType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FRAMEWORK_ROUTE
public static final RouteBuildItem.RouteType FRAMEWORK_ROUTE
-
APPLICATION_ROUTE
public static final RouteBuildItem.RouteType APPLICATION_ROUTE
-
ABSOLUTE_ROUTE
public static final RouteBuildItem.RouteType ABSOLUTE_ROUTE
-
-
Method Detail
-
values
public static RouteBuildItem.RouteType[] 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 (RouteBuildItem.RouteType c : RouteBuildItem.RouteType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RouteBuildItem.RouteType 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
-
-