Uses of Class
org.htmlunit.FormEncodingType
-
Packages that use FormEncodingType Package Description org.htmlunit Framework classes (contains theWebClient
class which is the main entry point). -
-
Uses of FormEncodingType in org.htmlunit
Fields in org.htmlunit declared as FormEncodingType Modifier and Type Field Description private FormEncodingType
WebRequest. encodingType_
static FormEncodingType
FormEncodingType. MULTIPART
Multipart form encoding (used to be a constant in HttpClient but it was deprecated with no alternative).static FormEncodingType
FormEncodingType. TEXT_PLAIN
text/plain.static FormEncodingType
FormEncodingType. URL_ENCODED
URL-encoded form encoding.Methods in org.htmlunit that return FormEncodingType Modifier and Type Method Description FormEncodingType
WebRequest. getEncodingType()
Returns the form encoding type to use.static FormEncodingType
FormEncodingType. getInstance(java.lang.String name)
Returns the constant that matches the specified name.Methods in org.htmlunit with parameters of type FormEncodingType Modifier and Type Method Description void
WebRequest. setEncodingType(FormEncodingType encodingType)
Sets the form encoding type to use.
-