public enum HTTPMethods extends 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(String v) |
String |
value() |
static HTTPMethods |
valueOf(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(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 value()
public static HTTPMethods fromValue(String v)
Copyright © 2007-2024, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.