Enum WebEndpointMapping.Kind
- java.lang.Object
-
- java.lang.Enum<WebEndpointMapping.Kind>
-
- io.microsphere.spring.web.metadata.WebEndpointMapping.Kind
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WebEndpointMapping.Kind>
- Enclosing class:
- WebEndpointMapping<E>
public static enum WebEndpointMapping.Kind extends java.lang.Enum<WebEndpointMapping.Kind>
WebEndpointMapping
Kind
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOMIZED
CustomizedFILTER
Filter
SERVLET
Servlet
WEB_FLUX
Spring WebFluxDispatcherHandler
WEB_MVC
Spring WebMVCDispatcherServlet
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebEndpointMapping.Kind
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WebEndpointMapping.Kind[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SERVLET
public static final WebEndpointMapping.Kind SERVLET
Servlet
-
FILTER
public static final WebEndpointMapping.Kind FILTER
Filter
-
WEB_MVC
public static final WebEndpointMapping.Kind WEB_MVC
Spring WebMVCDispatcherServlet
-
WEB_FLUX
public static final WebEndpointMapping.Kind WEB_FLUX
Spring WebFluxDispatcherHandler
-
CUSTOMIZED
public static final WebEndpointMapping.Kind CUSTOMIZED
Customized
-
-
Method Detail
-
values
public static WebEndpointMapping.Kind[] 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 (WebEndpointMapping.Kind c : WebEndpointMapping.Kind.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebEndpointMapping.Kind valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-