Files
codeql/java/ql/test/stubs/okhttp-4.9.3/okhttp3/TlsVersion.java
Joe Farebrother 4afecf575e Generate more stubs for okhttp and fix tests.
Some generated stubs needed to be manually corrected.
2022-12-09 13:41:17 +00:00

19 lines
522 B
Java
Generated

// Generated automatically from okhttp3.TlsVersion for testing purposes
package okhttp3;
public enum TlsVersion
{
SSL_3_0, TLS_1_0, TLS_1_1, TLS_1_2, TLS_1_3;
private TlsVersion() {}
public final String javaName(){ return null; }
public static TlsVersion forJavaName(String p0){ return null; }
public static TlsVersion.Companion Companion = null;
static public class Companion
{
protected Companion() {}
public final TlsVersion forJavaName(String p0){ return null; }
}
}