public final enum class org.apache.hc.core.http.frame.FrameFlag extends java.lang.Enum
{
public static final enum org.apache.hc.core.http.frame.FrameFlag END_STREAM;
public static final enum org.apache.hc.core.http.frame.FrameFlag ACK;
public static final enum org.apache.hc.core.http.frame.FrameFlag END_HEADERS;
public static final enum org.apache.hc.core.http.frame.FrameFlag PADDED;
public static final enum org.apache.hc.core.http.frame.FrameFlag PRIORITY;
final int value;
private static final org.apache.hc.core.http.frame.FrameFlag[] $VALUES;
public static org.apache.hc.core.http.frame.FrameFlag[] values()
{
java.lang.Object v;
org.apache.hc.core.http.frame.FrameFlag[] v;
v = <org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag[] $VALUES>;
v = virtualinvoke v.<java.lang.Object: java.lang.Object clone()>();
return v;
}
public static org.apache.hc.core.http.frame.FrameFlag valueOf(java.lang.String)
{
java.lang.String v;
java.lang.Enum v;
v := @parameter: java.lang.String;
v = staticinvoke <java.lang.Enum: java.lang.Enum valueOf(java.lang.Class,java.lang.String)>(class "Lorg/apache/hc/core5/http2/frame/FrameFlag;", v);
return v;
}
private void <init>(java.lang.String, int, int)
{
org.apache.hc.core.http.frame.FrameFlag v;
int v, v;
java.lang.String v;
v := @this: org.apache.hc.core.http.frame.FrameFlag;
v := @parameter: java.lang.String;
v := @parameter: int;
v := @parameter: int;
specialinvoke v.<java.lang.Enum: void <init>(java.lang.String,int)>(v, v);
v.<org.apache.hc.core.http.frame.FrameFlag: int value> = v;
return;
}
public int getValue()
{
int v;
org.apache.hc.core.http.frame.FrameFlag v;
v := @this: org.apache.hc.core.http.frame.FrameFlag;
v = v.<org.apache.hc.core.http.frame.FrameFlag: int value>;
return v;
}
public static transient int of(org.apache.hc.core.http.frame.FrameFlag[])
{
org.apache.hc.core.http.frame.FrameFlag v;
int v, v, v, v;
org.apache.hc.core.http.frame.FrameFlag[] v;
v := @parameter: org.apache.hc.core.http.frame.FrameFlag[];
v = 0;
v = lengthof v;
v = 0;
label:
if v >= v goto label;
v = v[v];
v = v.<org.apache.hc.core.http.frame.FrameFlag: int value>;
v = v | v;
v = v + 1;
goto label;
label:
return v;
}
private static org.apache.hc.core.http.frame.FrameFlag[] $values()
{
org.apache.hc.core.http.frame.FrameFlag v, v, v, v, v;
org.apache.hc.core.http.frame.FrameFlag[] v;
v = newarray (org.apache.hc.core.http.frame.FrameFlag)[5];
v = <org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag END_STREAM>;
v[0] = v;
v = <org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag ACK>;
v[1] = v;
v = <org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag END_HEADERS>;
v[2] = v;
v = <org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag PADDED>;
v[3] = v;
v = <org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag PRIORITY>;
v[4] = v;
return v;
}
static void <clinit>()
{
org.apache.hc.core.http.frame.FrameFlag v, v, v, v, v;
org.apache.hc.core.http.frame.FrameFlag[] v;
v = new org.apache.hc.core.http.frame.FrameFlag;
specialinvoke v.<org.apache.hc.core.http.frame.FrameFlag: void <init>(java.lang.String,int,int)>("END_STREAM", 0, 1);
<org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag END_STREAM> = v;
v = new org.apache.hc.core.http.frame.FrameFlag;
specialinvoke v.<org.apache.hc.core.http.frame.FrameFlag: void <init>(java.lang.String,int,int)>("ACK", 1, 1);
<org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag ACK> = v;
v = new org.apache.hc.core.http.frame.FrameFlag;
specialinvoke v.<org.apache.hc.core.http.frame.FrameFlag: void <init>(java.lang.String,int,int)>("END_HEADERS", 2, 4);
<org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag END_HEADERS> = v;
v = new org.apache.hc.core.http.frame.FrameFlag;
specialinvoke v.<org.apache.hc.core.http.frame.FrameFlag: void <init>(java.lang.String,int,int)>("PADDED", 3, 8);
<org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag PADDED> = v;
v = new org.apache.hc.core.http.frame.FrameFlag;
specialinvoke v.<org.apache.hc.core.http.frame.FrameFlag: void <init>(java.lang.String,int,int)>("PRIORITY", 4, 32);
<org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag PRIORITY> = v;
v = staticinvoke <org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag[] $values()>();
<org.apache.hc.core.http.frame.FrameFlag: org.apache.hc.core.http.frame.FrameFlag[] $VALUES> = v;
return;
}
}