mirror of
https://github.com/github/codeql.git
synced 2026-08-03 08:52:55 +02:00
19 lines
505 B
Java
Generated
19 lines
505 B
Java
Generated
// Generated automatically from okhttp3.Protocol for testing purposes
|
|
|
|
package okhttp3;
|
|
|
|
|
|
public enum Protocol
|
|
{
|
|
H2_PRIOR_KNOWLEDGE, HTTP_1_0, HTTP_1_1, HTTP_2, QUIC, SPDY_3;
|
|
private Protocol() {}
|
|
public String toString(){ return null; }
|
|
public static Protocol get(String p0){ return null; }
|
|
public static Protocol.Companion Companion = null;
|
|
static public class Companion
|
|
{
|
|
protected Companion() {}
|
|
public final Protocol get(String p0){ return null; }
|
|
}
|
|
}
|