what-the-bank/sources/okhttp3/repackaged/Protocol.java

43 lines
1.0 KiB
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package okhttp3.repackaged;
import java.io.IOException;
/* loaded from: classes6.dex */
public enum Protocol {
HTTP_1_0("http/1.0"),
HTTP_1_1("http/1.1"),
SPDY_3("spdy/3.1"),
HTTP_2("h2");
private final String protocol;
Protocol(String str) {
this.protocol = str;
}
public static Protocol get(String str) throws IOException {
Protocol protocol = HTTP_1_0;
if (str.equals(protocol.protocol)) {
return protocol;
}
Protocol protocol2 = HTTP_1_1;
if (str.equals(protocol2.protocol)) {
return protocol2;
}
Protocol protocol3 = HTTP_2;
if (str.equals(protocol3.protocol)) {
return protocol3;
}
Protocol protocol4 = SPDY_3;
if (str.equals(protocol4.protocol)) {
return protocol4;
}
throw new IOException("Unexpected protocol: ".concat(String.valueOf(str)));
}
@Override // java.lang.Enum
public final String toString() {
return this.protocol;
}
}