MCPcopy Create free account
hub / github.com/SeanDragon/protools / HttpMethod

Enum HttpMethod

http/src/main/java/pro/tools/http/pojo/HttpMethod.java:6–43  ·  view source on GitHub ↗

@author SeanDragon

Source from the content-addressed store, hash-verified

4 * @author SeanDragon
5 */
6public enum HttpMethod {
7 /**
8 * GET请求方式
9 */
10 GET,
11 /**
12 * POST请求方式
13 */
14 POST,
15 /**
16 * PUT请求方式
17 */
18 PUT,
19 /**
20 * TRACE请求方式
21 */
22 TRACE,
23 /**
24 * DELETE请求方式
25 */
26 DELETE,
27 /**
28 * OPTIONS请求方式
29 */
30 OPTIONS,
31 /**
32 * HEAD请求方式
33 */
34 HEAD,
35 /**
36 * PATCH请求方式
37 */
38 PATCH,
39 /**
40 * CONNECT请求方式
41 */
42 CONNECT,
43}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected