public static enum Constants.PublicRequestMethodTypes extends java.lang.Enum<Constants.PublicRequestMethodTypes>
Enum Constant and Description |
---|
DELETE
DELETE method type for REST request
|
GET
GET method type for REST request
|
POST
POST method type for REST request
|
PUT
PUT method type for REST request
|
Modifier and Type | Method and Description |
---|---|
static Constants.PublicRequestMethodTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Constants.PublicRequestMethodTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.PublicRequestMethodTypes POST
public static final Constants.PublicRequestMethodTypes GET
public static final Constants.PublicRequestMethodTypes PUT
public static final Constants.PublicRequestMethodTypes DELETE
public static Constants.PublicRequestMethodTypes[] values()
for (Constants.PublicRequestMethodTypes c : Constants.PublicRequestMethodTypes.values()) System.out.println(c);
public static Constants.PublicRequestMethodTypes valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null