mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-26 09:02:34 -06:00
74 lines
3.3 KiB
Java
74 lines
3.3 KiB
Java
package okhttp3;
|
|
|
|
import java.io.IOException;
|
|
import kotlin.Metadata;
|
|
import kotlin.jvm.JvmStatic;
|
|
import kotlin.jvm.internal.DefaultConstructorMarker;
|
|
import kotlin.jvm.internal.Intrinsics;
|
|
|
|
/* compiled from: Protocol.kt */
|
|
@Metadata(bv = {1, 0, 3}, d1 = {"\u0000\u0012\n\u0002\u0018\u0002\n\u0002\u0010\u0010\n\u0000\n\u0002\u0010\u000e\n\u0002\b\n\b\u0086\u0001\u0018\u0000 \f2\b\u0012\u0004\u0012\u00020\u00000\u0001:\u0001\fB\u000f\b\u0002\u0012\u0006\u0010\u0002\u001a\u00020\u0003¢\u0006\u0002\u0010\u0004J\b\u0010\u0005\u001a\u00020\u0003H\u0016R\u000e\u0010\u0002\u001a\u00020\u0003X\u0082\u0004¢\u0006\u0002\n\u0000j\u0002\b\u0006j\u0002\b\u0007j\u0002\b\bj\u0002\b\tj\u0002\b\nj\u0002\b\u000b¨\u0006\r"}, d2 = {"Lokhttp3/Protocol;", "", "protocol", "", "(Ljava/lang/String;ILjava/lang/String;)V", "toString", "HTTP_1_0", "HTTP_1_1", "SPDY_3", "HTTP_2", "H2_PRIOR_KNOWLEDGE", "QUIC", "Companion", "okhttp"}, k = 1, mv = {1, 4, 0})
|
|
/* loaded from: classes3.dex */
|
|
public enum Protocol {
|
|
HTTP_1_0("http/1.0"),
|
|
HTTP_1_1("http/1.1"),
|
|
SPDY_3("spdy/3.1"),
|
|
HTTP_2("h2"),
|
|
H2_PRIOR_KNOWLEDGE("h2_prior_knowledge"),
|
|
QUIC("quic");
|
|
|
|
|
|
/* renamed from: Companion, reason: from kotlin metadata */
|
|
public static final Companion INSTANCE = new Companion(null);
|
|
private final String protocol;
|
|
|
|
@JvmStatic
|
|
public static final Protocol get(String str) throws IOException {
|
|
return INSTANCE.get(str);
|
|
}
|
|
|
|
@Override // java.lang.Enum
|
|
public String toString() {
|
|
return this.protocol;
|
|
}
|
|
|
|
Protocol(String str) {
|
|
this.protocol = str;
|
|
}
|
|
|
|
/* compiled from: Protocol.kt */
|
|
@Metadata(bv = {1, 0, 3}, d1 = {"\u0000\u0018\n\u0002\u0018\u0002\n\u0002\u0010\u0000\n\u0002\b\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0086\u0003\u0018\u00002\u00020\u0001B\u0007\b\u0002¢\u0006\u0002\u0010\u0002J\u0010\u0010\u0003\u001a\u00020\u00042\u0006\u0010\u0005\u001a\u00020\u0006H\u0007¨\u0006\u0007"}, d2 = {"Lokhttp3/Protocol$Companion;", "", "()V", "get", "Lokhttp3/Protocol;", "protocol", "", "okhttp"}, k = 1, mv = {1, 4, 0})
|
|
/* loaded from: classes3.dex */
|
|
public static final class Companion {
|
|
private Companion() {
|
|
}
|
|
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
@JvmStatic
|
|
public final Protocol get(String protocol) throws IOException {
|
|
Intrinsics.checkNotNullParameter(protocol, "protocol");
|
|
if (Intrinsics.areEqual(protocol, Protocol.HTTP_1_0.protocol)) {
|
|
return Protocol.HTTP_1_0;
|
|
}
|
|
if (Intrinsics.areEqual(protocol, Protocol.HTTP_1_1.protocol)) {
|
|
return Protocol.HTTP_1_1;
|
|
}
|
|
if (Intrinsics.areEqual(protocol, Protocol.H2_PRIOR_KNOWLEDGE.protocol)) {
|
|
return Protocol.H2_PRIOR_KNOWLEDGE;
|
|
}
|
|
if (Intrinsics.areEqual(protocol, Protocol.HTTP_2.protocol)) {
|
|
return Protocol.HTTP_2;
|
|
}
|
|
if (Intrinsics.areEqual(protocol, Protocol.SPDY_3.protocol)) {
|
|
return Protocol.SPDY_3;
|
|
}
|
|
if (Intrinsics.areEqual(protocol, Protocol.QUIC.protocol)) {
|
|
return Protocol.QUIC;
|
|
}
|
|
throw new IOException("Unexpected protocol: " + protocol);
|
|
}
|
|
}
|
|
}
|