public final enum class org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod extends java.lang.Enum
{
public static final enum org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod GET;
public static final enum org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod PUT;
public static final enum org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod DELETE;
public static final enum org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod POST;
private static final org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod[] $VALUES;
public static org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod[] values()
{
org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod[] v;
java.lang.Object v;
v = <org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod[] $VALUES>;
v = virtualinvoke v.<java.lang.Object: java.lang.Object clone()>();
return v;
}
public static org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod 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/isis/viewer/restfulobjects/applib/RestfulHttpMethod;", v);
return v;
}
private void <init>(java.lang.String, int)
{
int v;
java.lang.String v;
org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod v;
v := @this: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod;
v := @parameter: java.lang.String;
v := @parameter: int;
specialinvoke v.<java.lang.Enum: void <init>(java.lang.String,int)>(v, v);
return;
}
private static org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod[] $values()
{
org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod[] v;
org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod v, v, v, v;
v = newarray (org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod)[4];
v = <org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod GET>;
v[0] = v;
v = <org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod PUT>;
v[1] = v;
v = <org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod DELETE>;
v[2] = v;
v = <org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod POST>;
v[3] = v;
return v;
}
static void <clinit>()
{
org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod[] v;
org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod v, v, v, v;
v = new org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod;
specialinvoke v.<org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: void <init>(java.lang.String,int)>("GET", 0);
<org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod GET> = v;
v = new org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod;
specialinvoke v.<org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: void <init>(java.lang.String,int)>("PUT", 1);
<org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod PUT> = v;
v = new org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod;
specialinvoke v.<org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: void <init>(java.lang.String,int)>("DELETE", 2);
<org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod DELETE> = v;
v = new org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod;
specialinvoke v.<org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: void <init>(java.lang.String,int)>("POST", 3);
<org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod POST> = v;
v = staticinvoke <org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod[] $values()>();
<org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod: org.apache.isis.viewer.restfulobjects.applib.RestfulHttpMethod[] $VALUES> = v;
return;
}
}