Enum DataToSignProvider.HttpMethod
- java.lang.Object
-
- java.lang.Enum<DataToSignProvider.HttpMethod>
-
- de.adorsys.opba.api.security.generator.api.DataToSignProvider.HttpMethod
-
- All Implemented Interfaces:
Serializable,Comparable<DataToSignProvider.HttpMethod>
- Enclosing interface:
- DataToSignProvider
public static enum DataToSignProvider.HttpMethod extends Enum<DataToSignProvider.HttpMethod>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DataToSignProvider.HttpMethodvalueOf(String name)Returns the enum constant of this type with the specified name.static DataToSignProvider.HttpMethod[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
POST
public static final DataToSignProvider.HttpMethod POST
-
GET
public static final DataToSignProvider.HttpMethod GET
-
PUT
public static final DataToSignProvider.HttpMethod PUT
-
PATCH
public static final DataToSignProvider.HttpMethod PATCH
-
DELETE
public static final DataToSignProvider.HttpMethod DELETE
-
HEAD
public static final DataToSignProvider.HttpMethod HEAD
-
OPTIONS
public static final DataToSignProvider.HttpMethod OPTIONS
-
TRACE
public static final DataToSignProvider.HttpMethod TRACE
-
-
Method Detail
-
values
public static DataToSignProvider.HttpMethod[] 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 (DataToSignProvider.HttpMethod c : DataToSignProvider.HttpMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataToSignProvider.HttpMethod 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
-
-