public final class org.apache.hc.core.http.impl.BasicEntityDetails extends java.lang.Object implements org.apache.hc.core.http.EntityDetails
{
private final long len;
private final org.apache.hc.core.http.ContentType contentType;
public void <init>(long, org.apache.hc.core.http.ContentType)
{
long v;
org.apache.hc.core.http.ContentType v;
org.apache.hc.core.http.impl.BasicEntityDetails v;
v := @this: org.apache.hc.core.http.impl.BasicEntityDetails;
v := @parameter: long;
v := @parameter: org.apache.hc.core.http.ContentType;
specialinvoke v.<java.lang.Object: void <init>()>();
v.<org.apache.hc.core.http.impl.BasicEntityDetails: long len> = v;
v.<org.apache.hc.core.http.impl.BasicEntityDetails: org.apache.hc.core.http.ContentType contentType> = v;
return;
}
public long getContentLength()
{
long v;
org.apache.hc.core.http.impl.BasicEntityDetails v;
v := @this: org.apache.hc.core.http.impl.BasicEntityDetails;
v = v.<org.apache.hc.core.http.impl.BasicEntityDetails: long len>;
return v;
}
public java.lang.String getContentType()
{
org.apache.hc.core.http.ContentType v, v;
java.lang.String v;
org.apache.hc.core.http.impl.BasicEntityDetails v;
v := @this: org.apache.hc.core.http.impl.BasicEntityDetails;
v = v.<org.apache.hc.core.http.impl.BasicEntityDetails: org.apache.hc.core.http.ContentType contentType>;
if v == null goto label;
v = v.<org.apache.hc.core.http.impl.BasicEntityDetails: org.apache.hc.core.http.ContentType contentType>;
v = virtualinvoke v.<org.apache.hc.core.http.ContentType: java.lang.String toString()>();
goto label;
label:
v = null;
label:
return v;
}
public java.lang.String getContentEncoding()
{
org.apache.hc.core.http.impl.BasicEntityDetails v;
v := @this: org.apache.hc.core.http.impl.BasicEntityDetails;
return null;
}
public boolean isChunked()
{
org.apache.hc.core.http.impl.BasicEntityDetails v;
v := @this: org.apache.hc.core.http.impl.BasicEntityDetails;
return 0;
}
public java.util.Set getTrailerNames()
{
org.apache.hc.core.http.impl.BasicEntityDetails v;
v := @this: org.apache.hc.core.http.impl.BasicEntityDetails;
return null;
}
}