public static enum Http.HttpMethod extends Enum<Http.HttpMethod>
public static final Http.HttpMethod GET
public static final Http.HttpMethod POST
public static final Http.HttpMethod PUT
public static final Http.HttpMethod DELETE
public static final Http.HttpMethod HEAD
public static final Http.HttpMethod TRACE
public static final Http.HttpMethod OPTIONS
public static Http.HttpMethod[] values()
for (Http.HttpMethod c : Http.HttpMethod.values()) System.out.println(c);
public static Http.HttpMethod valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.