mirror of
https://github.com/github/codeql.git
synced 2026-08-03 00:43:00 +02:00
19 lines
522 B
Java
Generated
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; }
|
|
}
|
|
}
|