1.0
xin
2025-04-15 e718afd02965c6a4018506acb1ae99baca0c5645
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
package com.oying.utils.enums;
 
import lombok.AllArgsConstructor;
import lombok.Getter;
 
/**
 * @author Z
 * @description
 * @date 2020-06-10
 **/
@Getter
@AllArgsConstructor
public enum RequestMethodEnum {
 
    /**
     * 搜寻 @AnonymousGetMapping
     */
    GET("GET"),
 
    /**
     * 搜寻 @AnonymousPostMapping
     */
    POST("POST"),
 
    /**
     * 搜寻 @AnonymousPutMapping
     */
    PUT("PUT"),
 
    /**
     * 搜寻 @AnonymousPatchMapping
     */
    PATCH("PATCH"),
 
    /**
     * 搜寻 @AnonymousDeleteMapping
     */
    DELETE("DELETE"),
 
    /**
     * 否则就是所有 Request 接口都放行
     */
    ALL("All");
 
    /**
     * Request 类型
     */
    private final String type;
 
    public static RequestMethodEnum find(String type) {
        for (RequestMethodEnum value : RequestMethodEnum.values()) {
            if (value.getType().equals(type)) {
                return value;
            }
        }
        return ALL;
    }
}