public final class org.apache.hc.core.http.io.entity.NullEntity extends java.lang.Object implements org.apache.hc.core.http.HttpEntity
{
public static final org.apache.hc.core.http.io.entity.NullEntity INSTANCE;
private void <init>()
{
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
specialinvoke v.<java.lang.Object: void <init>()>();
return;
}
public boolean isRepeatable()
{
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
return 1;
}
public java.io.InputStream getContent() throws java.io.IOException, java.lang.UnsupportedOperationException
{
org.apache.hc.core.http.io.entity.EmptyInputStream v;
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
v = <org.apache.hc.core.http.io.entity.EmptyInputStream: org.apache.hc.core.http.io.entity.EmptyInputStream INSTANCE>;
return v;
}
public void writeTo(java.io.OutputStream) throws java.io.IOException
{
java.io.OutputStream v;
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
v := @parameter: java.io.OutputStream;
return;
}
public boolean isStreaming()
{
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
return 0;
}
public org.apache.hc.core.function.Supplier getTrailers()
{
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
return null;
}
public void close() throws java.io.IOException
{
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
return;
}
public long getContentLength()
{
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
return 0L;
}
public java.lang.String getContentType()
{
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
return null;
}
public java.lang.String getContentEncoding()
{
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
return null;
}
public boolean isChunked()
{
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
return 0;
}
public java.util.Set getTrailerNames()
{
java.util.Set v;
org.apache.hc.core.http.io.entity.NullEntity v;
v := @this: org.apache.hc.core.http.io.entity.NullEntity;
v = staticinvoke <java.util.Collections: java.util.Set emptySet()>();
return v;
}
static void <clinit>()
{
org.apache.hc.core.http.io.entity.NullEntity v;
v = new org.apache.hc.core.http.io.entity.NullEntity;
specialinvoke v.<org.apache.hc.core.http.io.entity.NullEntity: void <init>()>();
<org.apache.hc.core.http.io.entity.NullEntity: org.apache.hc.core.http.io.entity.NullEntity INSTANCE> = v;
return;
}
}