public static enum Client.Method extends Enum<Client.Method>
Enum Constant and Description |
---|
DELETE |
GET |
HEAD |
OPTIONS |
PATCH |
POST |
PUT |
TRACE |
Modifier and Type | Method and Description |
---|---|
static Client.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Client.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Client.Method DELETE
public static final Client.Method GET
public static final Client.Method HEAD
public static final Client.Method OPTIONS
public static final Client.Method PATCH
public static final Client.Method POST
public static final Client.Method PUT
public static final Client.Method TRACE
public static Client.Method[] values()
for (Client.Method c : Client.Method.values()) System.out.println(c);
public static Client.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 null@enterprise 10.0.39049 Copyright © 2024 FREQUENTIS AG. All Rights Reserved.