Note that, by default, DispatcherServlet
supports GET, HEAD, POST, PUT and DELETE only. DispatcherServlet will
process TRACE and OPTIONS with the default HttpServlet behavior unless
explicitly told to dispatch those request types as well: Check out
the "dispatchOptionsRequest" and "dispatchTraceRequest" properties,
switching them to "true" if necessary.
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 (RequestMethod c : RequestMethod.values())
System.out.println(c);
Returns:
an array containing the constants of this enum type, in
the order they are declared
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.