public enum InvokeHttpMethod extends Enum<InvokeHttpMethod>
Modifier and Type | Method and Description |
---|---|
static InvokeHttpMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InvokeHttpMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InvokeHttpMethod GET
public static final InvokeHttpMethod POST
public static final InvokeHttpMethod PUT
public static final InvokeHttpMethod PATCH
public static final InvokeHttpMethod DELETE
public static InvokeHttpMethod[] values()
for (InvokeHttpMethod c : InvokeHttpMethod.values()) System.out.println(c);
public static InvokeHttpMethod 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 nullCopyright © 2010–2020. All rights reserved.