com.ibm.ctg.monitoring
Enum HttpVerb
- java.lang.Object
-
- java.lang.Enum<HttpVerb>
-
- com.ibm.ctg.monitoring.HttpVerb
-
-
Enum Constant Summary
Enum Constants Enum Constant and Description DELETEAn HTTP DELETE request.GETAn HTTP GET request.HEADAn HTTP HEAD request.POSTAn HTTP POST request.PUTAn HTTP PUT request.
-
Method Summary
Methods Modifier and Type Method and Description static HttpVerbvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static HttpVerb[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GET
public static final HttpVerb GET
An HTTP GET request.
-
POST
public static final HttpVerb POST
An HTTP POST request.
-
PUT
public static final HttpVerb PUT
An HTTP PUT request.
-
DELETE
public static final HttpVerb DELETE
An HTTP DELETE request.
-
HEAD
public static final HttpVerb HEAD
An HTTP HEAD request.
-
-
Method Detail
-
values
public static HttpVerb[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (HttpVerb c : HttpVerb.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpVerb valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-