public enum Protocol extends Enum<Protocol>
URL.getProtocol() returns the
scheme (http, https, etc.) of the URL, not
the protocol (http/1.1, spdy/3.1, etc.). OkHttp uses the word protocol to
indicate how HTTP messages are framed.| Modifier and Type | Field and Description |
|---|---|
com.squareup.okhttp.internal.okio.ByteString |
name
Identifier string used in NPN or ALPN selection.
|
boolean |
spdyVariant
When true the protocol is binary framed and derived from SPDY.
|
| Modifier and Type | Method and Description |
|---|---|
static Protocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Protocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Protocol HTTP_2
public static final Protocol SPDY_3
public static final Protocol HTTP_11
public final com.squareup.okhttp.internal.okio.ByteString name
public final boolean spdyVariant
Variantpublic static Protocol[] values()
for (Protocol c : Protocol.values()) System.out.println(c);
public static Protocol 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 © 2014. All Rights Reserved.