final enum class io.netty.handler.pcap.State extends java.lang.Enum
{
public static final enum io.netty.handler.pcap.State INIT;
public static final enum io.netty.handler.pcap.State WRITING;
public static final enum io.netty.handler.pcap.State PAUSED;
public static final enum io.netty.handler.pcap.State CLOSED;
private static final io.netty.handler.pcap.State[] $VALUES;
public static io.netty.handler.pcap.State[] values()
{
io.netty.handler.pcap.State[] v;
java.lang.Object v;
v = <io.netty.handler.pcap.State: io.netty.handler.pcap.State[] $VALUES>;
v = virtualinvoke v.<java.lang.Object: java.lang.Object clone()>();
return v;
}
public static io.netty.handler.pcap.State 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 "Lio/netty/handler/pcap/State;", v);
return v;
}
private void <init>(java.lang.String, int)
{
int v;
io.netty.handler.pcap.State v;
java.lang.String v;
v := @this: io.netty.handler.pcap.State;
v := @parameter: java.lang.String;
v := @parameter: int;
specialinvoke v.<java.lang.Enum: void <init>(java.lang.String,int)>(v, v);
return;
}
private static io.netty.handler.pcap.State[] $values()
{
io.netty.handler.pcap.State[] v;
io.netty.handler.pcap.State v, v, v, v;
v = newarray (io.netty.handler.pcap.State)[4];
v = <io.netty.handler.pcap.State: io.netty.handler.pcap.State INIT>;
v[0] = v;
v = <io.netty.handler.pcap.State: io.netty.handler.pcap.State WRITING>;
v[1] = v;
v = <io.netty.handler.pcap.State: io.netty.handler.pcap.State PAUSED>;
v[2] = v;
v = <io.netty.handler.pcap.State: io.netty.handler.pcap.State CLOSED>;
v[3] = v;
return v;
}
static void <clinit>()
{
io.netty.handler.pcap.State[] v;
io.netty.handler.pcap.State v, v, v, v;
v = new io.netty.handler.pcap.State;
specialinvoke v.<io.netty.handler.pcap.State: void <init>(java.lang.String,int)>("INIT", 0);
<io.netty.handler.pcap.State: io.netty.handler.pcap.State INIT> = v;
v = new io.netty.handler.pcap.State;
specialinvoke v.<io.netty.handler.pcap.State: void <init>(java.lang.String,int)>("WRITING", 1);
<io.netty.handler.pcap.State: io.netty.handler.pcap.State WRITING> = v;
v = new io.netty.handler.pcap.State;
specialinvoke v.<io.netty.handler.pcap.State: void <init>(java.lang.String,int)>("PAUSED", 2);
<io.netty.handler.pcap.State: io.netty.handler.pcap.State PAUSED> = v;
v = new io.netty.handler.pcap.State;
specialinvoke v.<io.netty.handler.pcap.State: void <init>(java.lang.String,int)>("CLOSED", 3);
<io.netty.handler.pcap.State: io.netty.handler.pcap.State CLOSED> = v;
v = staticinvoke <io.netty.handler.pcap.State: io.netty.handler.pcap.State[] $values()>();
<io.netty.handler.pcap.State: io.netty.handler.pcap.State[] $VALUES> = v;
return;
}
}