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