Package org.fcrepo.client
Enum HttpMethods
- java.lang.Object
-
- java.lang.Enum<HttpMethods>
-
- org.fcrepo.client.HttpMethods
-
- All Implemented Interfaces:
Serializable,Comparable<HttpMethods>
public enum HttpMethods extends Enum<HttpMethods>
Represents an HTTP method to pass to the underlying client- Since:
- January 8, 2015
- Author:
- Aaron Coburn
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classHttpMethods.HttpCopyHTTP COPY method.static classHttpMethods.HttpMoveHTTP MOVE method.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.apache.http.client.methods.HttpRequestBasecreateRequest(URI url)Instantiate a new HttpRequst object from the method typestatic HttpMethodsvalueOf(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.
-
-
-
Enum Constant Detail
-
GET
public static final HttpMethods GET
-
PATCH
public static final HttpMethods PATCH
-
POST
public static final HttpMethods POST
-
PUT
public static final HttpMethods PUT
-
DELETE
public static final HttpMethods DELETE
-
HEAD
public static final HttpMethods HEAD
-
OPTIONS
public static final HttpMethods OPTIONS
-
MOVE
public static final HttpMethods MOVE
-
COPY
public static final HttpMethods COPY
-
-
Method Detail
-
values
public static HttpMethods[] 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 (HttpMethods c : HttpMethods.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static HttpMethods valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
createRequest
public org.apache.http.client.methods.HttpRequestBase createRequest(URI url)
Instantiate a new HttpRequst object from the method type- Parameters:
url- the URI that is part of the request- Returns:
- an instance of the corresponding request class
-
-