Package kong.unirest.core
Interface RawResponse
-
- All Known Implementing Classes:
RawResponseBase
public interface RawResponse
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConfiggetConfig()InputStreamgetContent()byte[]getContentAsBytes()StringgetContentAsString()StringgetContentAsString(String charset)InputStreamReadergetContentReader()StringgetContentType()StringgetEncoding()HeadersgetHeaders()HttpRequestSummarygetRequestSummary()intgetStatus()StringgetStatusText()booleanhasContent()HttpResponseSummarytoSummary()
-
-
-
Method Detail
-
getStatus
int getStatus()
-
getStatusText
String getStatusText()
-
getHeaders
Headers getHeaders()
-
getContent
InputStream getContent()
-
getContentAsBytes
byte[] getContentAsBytes()
-
getContentAsString
String getContentAsString()
-
getContentReader
InputStreamReader getContentReader()
-
hasContent
boolean hasContent()
-
getContentType
String getContentType()
-
getEncoding
String getEncoding()
-
getConfig
Config getConfig()
-
toSummary
HttpResponseSummary toSummary()
-
getRequestSummary
HttpRequestSummary getRequestSummary()
-
-