- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
64 lines
1.6 KiB
Java
64 lines
1.6 KiB
Java
package org.apache.http;
|
|
|
|
import java.io.Serializable;
|
|
|
|
@Deprecated
|
|
/* loaded from: classes5.dex */
|
|
public class ProtocolVersion implements Serializable {
|
|
protected final int major;
|
|
protected final int minor;
|
|
protected final String protocol;
|
|
|
|
public ProtocolVersion(String str, int i, int i2) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final String getProtocol() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final int getMajor() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final int getMinor() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public ProtocolVersion forVersion(int i, int i2) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final int hashCode() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final boolean equals(Object obj) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public boolean isComparable(ProtocolVersion protocolVersion) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public int compareToVersion(ProtocolVersion protocolVersion) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final boolean greaterEquals(ProtocolVersion protocolVersion) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public final boolean lessEquals(ProtocolVersion protocolVersion) {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public String toString() {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
|
|
public Object clone() throws CloneNotSupportedException {
|
|
throw new RuntimeException("Stub!");
|
|
}
|
|
}
|