Uses of Enum Class
com.soklet.QueryFormat
Packages that use QueryFormat
-
Uses of QueryFormat in com.soklet
Subclasses with type arguments of type QueryFormat in com.sokletModifier and TypeClassDescriptionenumStrategies for encoding/decoding query strings:Content-Type: application/x-www-form-urlencoded(supports"+"for spaces) or "strict" RFC 3986 (percent-decoding only).Methods in com.soklet that return QueryFormatModifier and TypeMethodDescriptionstatic QueryFormatReturns the enum constant of this class with the specified name.static QueryFormat[]QueryFormat.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in com.soklet with parameters of type QueryFormatModifier and TypeMethodDescriptionstatic StringUtilities.encodeQueryParameters(Map<String, Set<String>> queryParameters, QueryFormat queryFormat) Encodes decoded query parameters into a raw query string.Utilities.extractQueryParametersFromQuery(String query, QueryFormat queryFormat) Parses a query string such as"a=1&b=2&c=%20"into a multimap of names to values.Utilities.extractQueryParametersFromQuery(String query, QueryFormat queryFormat, Charset charset) Parses a query string such as"a=1&b=2&c=%20"into a multimap of names to values.Utilities.extractQueryParametersFromUrl(String url, QueryFormat queryFormat) Parses query strings from relative or absolute URLs such as"/example?a=a=1&b=2&c=%20"or"https://www.soklet.com/example?a=1&b=2&c=%20"into a multimap of names to values.Utilities.extractQueryParametersFromUrl(String url, QueryFormat queryFormat, Charset charset) Parses query strings from relative or absolute URLs such as"/example?a=a=1&b=2&c=%20"or"https://www.soklet.com/example?a=1&b=2&c=%20"into a multimap of names to values.