public static enum RequestClientOptions.Marker extends Enum<RequestClientOptions.Marker>
Enum Constant and Description |
---|
USER_AGENT
Used to specify the http user_agent value.
|
Modifier and Type | Method and Description |
---|---|
static RequestClientOptions.Marker |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestClientOptions.Marker[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestClientOptions.Marker USER_AGENT
public static RequestClientOptions.Marker[] values()
for (RequestClientOptions.Marker c : RequestClientOptions.Marker.values()) System.out.println(c);
public static RequestClientOptions.Marker 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.