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