public static enum HTTPMethod.Idempotency extends Enum<HTTPMethod.Idempotency>
| Enum Constant and Description |
|---|
IDEMPOTENT |
NON_IDEMPOTENT |
| Modifier and Type | Method and Description |
|---|---|
static HTTPMethod.Idempotency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HTTPMethod.Idempotency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HTTPMethod.Idempotency IDEMPOTENT
public static final HTTPMethod.Idempotency NON_IDEMPOTENT
public static HTTPMethod.Idempotency[] values()
for (HTTPMethod.Idempotency c : HTTPMethod.Idempotency.values()) System.out.println(c);
public static HTTPMethod.Idempotency 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 © 2008-2013. All Rights Reserved.