admin
昨天 768498719683f85e5ed19c73eb3d14cdbf420df4
提交 | 用户 | 时间
e57a89 1 package com.jcdm.common.enums;
2
3 import java.util.HashMap;
4 import java.util.Map;
5 import org.springframework.lang.Nullable;
6
7 /**
8  * 请求方式
9  *
10  * @author jc
11  */
12 public enum HttpMethod
13 {
14     GET, HEAD, POST, PUT, PATCH, DELETE, OPTIONS, TRACE;
15
16     private static final Map<String, HttpMethod> mappings = new HashMap<>(16);
17
18     static
19     {
20         for (HttpMethod httpMethod : values())
21         {
22             mappings.put(httpMethod.name(), httpMethod);
23         }
24     }
25
26     @Nullable
27     public static HttpMethod resolve(@Nullable String method)
28     {
29         return (method != null ? mappings.get(method) : null);
30     }
31
32     public boolean matches(String method)
33     {
34         return (this == resolve(method));
35     }
36 }