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