Uses of Class
org.restlet.ext.html.FormData
-
Packages that use FormData Package Description org.restlet.ext.html Support for the HTML (HyperText Markup Language) standard in its 4.0 version and above.org.restlet.ext.html.internal -
-
Uses of FormData in org.restlet.ext.html
Fields in org.restlet.ext.html with type parameters of type FormData Modifier and Type Field Description private Series<FormData>FormDataSet. entriesThe modifiable series of data entries.Methods in org.restlet.ext.html that return FormData Modifier and Type Method Description FormDataFormDataSet. add(java.lang.String name, java.lang.String value)Adds a new form data entry.Methods in org.restlet.ext.html that return types with arguments of type FormData Modifier and Type Method Description Series<FormData>FormDataSet. getEntries()Returns the modifiable series of form entries. -
Uses of FormData in org.restlet.ext.html.internal
Methods in org.restlet.ext.html.internal that return FormData Modifier and Type Method Description static FormDataFormUtils. create(java.lang.CharSequence name, java.lang.CharSequence value, boolean decode, CharacterSet characterSet)Creates a form data.static FormDataFormUtils. getFirstEntry(java.lang.String query, java.lang.String name, CharacterSet characterSet, char separator)Reads the first entry with the given name.static FormDataFormUtils. getFirstEntry(Representation post, java.lang.String name)Reads the first entry with the given name.FormDataFormReader. readFirstEntry(java.lang.String name)Reads the first entry with the given name.FormDataFormReader. readNextEntry()Reads the next entry available or null.Methods in org.restlet.ext.html.internal that return types with arguments of type FormData Modifier and Type Method Description Series<FormData>FormReader. read()Reads all the entries.Methods in org.restlet.ext.html.internal with parameters of type FormData Modifier and Type Method Description static booleanFormUtils. isEntryFound(FormData searchedEntry, MediaType mediaRange)Indicates if the searched entry is specified in the given media range.Method parameters in org.restlet.ext.html.internal with type arguments of type FormData Modifier and Type Method Description voidFormReader. addEntries(Series<FormData> entries)Adds the entries into a given series.static voidFormUtils. parse(Series<FormData> entriesSeries, java.lang.String queryString, CharacterSet characterSet, boolean decode, char separator)Parses a entries string into a given form.static voidFormUtils. parse(Series<FormData> entries, Representation post)Parses a post into a given entries series.
-