public enum HTTPMethods extends java.lang.Enum<HTTPMethods>
Java class for HTTPMethods.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="HTTPMethods"> <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN"> <enumeration value="GET"/> <enumeration value="POST"/> <enumeration value="PUT"/> <enumeration value="HEAD"/> <enumeration value="DELETE"/> </restriction> </simpleType>
Modifier and Type | Method and Description |
---|---|
static HTTPMethods |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static HTTPMethods |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HTTPMethods[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HTTPMethods GET
public static final HTTPMethods POST
public static final HTTPMethods PUT
public static final HTTPMethods HEAD
public static final HTTPMethods DELETE
public static HTTPMethods[] values()
for (HTTPMethods c : HTTPMethods.values()) System.out.println(c);
public static HTTPMethods valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static HTTPMethods fromValue(java.lang.String v)