22 lines
441 B
Java
22 lines
441 B
Java
package o;
|
|
|
|
/* renamed from: o.fNj, reason: case insensitive filesystem */
|
|
/* loaded from: classes5.dex */
|
|
public enum EnumC12997fNj {
|
|
HTTP_1_0("http/1.0"),
|
|
HTTP_1_1("http/1.1"),
|
|
SPDY_3("spdy/3.1"),
|
|
HTTP_2("h2");
|
|
|
|
private final String protocol;
|
|
|
|
EnumC12997fNj(String str) {
|
|
this.protocol = str;
|
|
}
|
|
|
|
@Override // java.lang.Enum
|
|
public final String toString() {
|
|
return this.protocol;
|
|
}
|
|
}
|