public static enum CrowdinAPI.HTTPMethod extends Enum<CrowdinAPI.HTTPMethod>
| Enum Constant and Description |
|---|
DELETE
HTTP DELETE
|
GET
HTTP GET
|
HEAD
HTTP HEAD
|
PATCH
HTTP PATCH
|
POST
HTTP POST
|
PUT
HTTP PUT
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
String |
toString() |
static CrowdinAPI.HTTPMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrowdinAPI.HTTPMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrowdinAPI.HTTPMethod DELETE
public static final CrowdinAPI.HTTPMethod GET
public static final CrowdinAPI.HTTPMethod HEAD
public static final CrowdinAPI.HTTPMethod PATCH
public static final CrowdinAPI.HTTPMethod POST
public static final CrowdinAPI.HTTPMethod PUT
public static CrowdinAPI.HTTPMethod[] values()
for (CrowdinAPI.HTTPMethod c : CrowdinAPI.HTTPMethod.values()) System.out.println(c);
public static CrowdinAPI.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 nullpublic String toString()
toString in class Enum<CrowdinAPI.HTTPMethod>Copyright © 2024. All rights reserved.