public final class io.netty.handler.codec.http.HttpScheme extends java.lang.Object
{
public static final io.netty.handler.codec.http.HttpScheme HTTP;
public static final io.netty.handler.codec.http.HttpScheme HTTPS;
private final int port;
private final io.netty.util.AsciiString name;
private void <init>(int, java.lang.String)
{
io.netty.handler.codec.http.HttpScheme v;
int v;
io.netty.util.AsciiString v;
java.lang.String v;
v := @this: io.netty.handler.codec.http.HttpScheme;
v := @parameter: int;
v := @parameter: java.lang.String;
specialinvoke v.<java.lang.Object: void <init>()>();
v.<io.netty.handler.codec.http.HttpScheme: int port> = v;
v = staticinvoke <io.netty.util.AsciiString: io.netty.util.AsciiString cached(java.lang.String)>(v);
v.<io.netty.handler.codec.http.HttpScheme: io.netty.util.AsciiString name> = v;
return;
}
public io.netty.util.AsciiString name()
{
io.netty.util.AsciiString v;
io.netty.handler.codec.http.HttpScheme v;
v := @this: io.netty.handler.codec.http.HttpScheme;
v = v.<io.netty.handler.codec.http.HttpScheme: io.netty.util.AsciiString name>;
return v;
}
public int port()
{
int v;
io.netty.handler.codec.http.HttpScheme v;
v := @this: io.netty.handler.codec.http.HttpScheme;
v = v.<io.netty.handler.codec.http.HttpScheme: int port>;
return v;
}
public boolean equals(java.lang.Object)
{
io.netty.util.AsciiString v, v;
io.netty.handler.codec.http.HttpScheme v;
int v, v;
java.lang.Object v;
boolean v, v, v;
v := @this: io.netty.handler.codec.http.HttpScheme;
v := @parameter: java.lang.Object;
v = v instanceof io.netty.handler.codec.http.HttpScheme;
if v != 0 goto label;
return 0;
label:
v = virtualinvoke v.<io.netty.handler.codec.http.HttpScheme: int port()>();
v = v.<io.netty.handler.codec.http.HttpScheme: int port>;
if v != v goto label;
v = virtualinvoke v.<io.netty.handler.codec.http.HttpScheme: io.netty.util.AsciiString name()>();
v = v.<io.netty.handler.codec.http.HttpScheme: io.netty.util.AsciiString name>;
v = virtualinvoke v.<io.netty.util.AsciiString: boolean equals(java.lang.Object)>(v);
if v == 0 goto label;
v = 1;
goto label;
label:
v = 0;
label:
return v;
}
public int hashCode()
{
io.netty.handler.codec.http.HttpScheme v;
int v, v, v, v;
io.netty.util.AsciiString v;
v := @this: io.netty.handler.codec.http.HttpScheme;
v = v.<io.netty.handler.codec.http.HttpScheme: int port>;
v = v * 31;
v = v.<io.netty.handler.codec.http.HttpScheme: io.netty.util.AsciiString name>;
v = virtualinvoke v.<io.netty.util.AsciiString: int hashCode()>();
v = v + v;
return v;
}
public java.lang.String toString()
{
io.netty.util.AsciiString v;
io.netty.handler.codec.http.HttpScheme v;
java.lang.String v;
v := @this: io.netty.handler.codec.http.HttpScheme;
v = v.<io.netty.handler.codec.http.HttpScheme: io.netty.util.AsciiString name>;
v = virtualinvoke v.<io.netty.util.AsciiString: java.lang.String toString()>();
return v;
}
static void <clinit>()
{
io.netty.handler.codec.http.HttpScheme v, v;
v = new io.netty.handler.codec.http.HttpScheme;
specialinvoke v.<io.netty.handler.codec.http.HttpScheme: void <init>(int,java.lang.String)>(80, "http");
<io.netty.handler.codec.http.HttpScheme: io.netty.handler.codec.http.HttpScheme HTTP> = v;
v = new io.netty.handler.codec.http.HttpScheme;
specialinvoke v.<io.netty.handler.codec.http.HttpScheme: void <init>(int,java.lang.String)>(443, "https");
<io.netty.handler.codec.http.HttpScheme: io.netty.handler.codec.http.HttpScheme HTTPS> = v;
return;
}
}