public static enum SteamHTTP.HTTPMethod extends Enum<SteamHTTP.HTTPMethod>
| Enum Constant and Description |
|---|
DELETE |
GET |
HEAD |
Invalid |
OPTIONS |
POST |
PUT |
| Modifier and Type | Method and Description |
|---|---|
static SteamHTTP.HTTPMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SteamHTTP.HTTPMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SteamHTTP.HTTPMethod Invalid
public static final SteamHTTP.HTTPMethod GET
public static final SteamHTTP.HTTPMethod HEAD
public static final SteamHTTP.HTTPMethod POST
public static final SteamHTTP.HTTPMethod PUT
public static final SteamHTTP.HTTPMethod DELETE
public static final SteamHTTP.HTTPMethod OPTIONS
public static SteamHTTP.HTTPMethod[] values()
for (SteamHTTP.HTTPMethod c : SteamHTTP.HTTPMethod.values()) System.out.println(c);
public static SteamHTTP.HTTPMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018. All rights reserved.