public enum HTTPMethods extends Enum<HTTPMethods>
Modifier and Type | Method and Description |
---|---|
static HTTPMethods |
parse(String s) |
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 PUT
public static final HTTPMethods POST
public static final HTTPMethods DELETE
public static final HTTPMethods OPTIONS
public static final HTTPMethods HEAD
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 static HTTPMethods parse(String s)
Copyright © 2012–2018 The Apache Software Foundation. All rights reserved.