Package com.norconex.commons.lang.url
Class QueryString
java.lang.Object
com.norconex.commons.lang.map.ObservableMap<String,List<String>>
com.norconex.commons.lang.map.Properties
com.norconex.commons.lang.url.QueryString
- All Implemented Interfaces:
Serializable,Map<String,List<String>>
Provides utility methods for getting and setting attributes on
a URL query string.
Since 1.4, query string parameters are stored and returned in the order they were provided.
Since 1.4, query string parameters are stored and returned in the order they were provided.
- See Also:
-
Nested Class Summary
-
Field Summary
Fields inherited from class com.norconex.commons.lang.map.Properties
DEFAULT_JAVA_PROPERTIES_DELIMITER -
Constructor Summary
ConstructorsConstructorDescriptionConstructor.QueryString(String urlWithQueryString) Constructor.QueryString(String urlWithQueryString, String encoding) Constructor.QueryString(URL urlWithQueryString) Default URL character encoding is UTF-8.QueryString(URL urlWithQueryString, String encoding) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionapplyOnURL(String url) Apply this url QueryString on the given URL.applyOnURL(URL url) Apply this url QueryString on the given URL.protected booleanbooleanGets the character encoding.inthashCode()toString()Convert thisQueryStringto a URL-encoded string representation that can be appended as is to a URL with no query string.Methods inherited from class com.norconex.commons.lang.map.Properties
add, addList, fromString, get, get, get, getBigDecimal, getBigDecimal, getBigDecimals, getBoolean, getBoolean, getBooleans, getClass, getClass, getClasses, getDate, getDate, getDates, getDouble, getDouble, getDoubles, getFile, getFile, getFiles, getFloat, getFloat, getFloats, getInstant, getInstant, getInstants, getInteger, getInteger, getIntegers, getList, getList, getLocalDateTime, getLocalDateTime, getLocalDateTimes, getLocale, getLocale, getLocales, getLong, getLong, getLongs, getString, getString, getStrings, isCaseInsensitiveKeys, loadFromBean, loadFromJSON, loadFromJSON, loadFromMap, loadFromProperties, loadFromProperties, loadFromProperties, loadFromProperties, loadFromXML, loadFromXML, loadFromXML, loadFromXML, match, match, matchKeys, matchValues, put, putAll, remove, set, setList, storeToBean, storeToJSON, storeToJSON, storeToProperties, storeToProperties, storeToProperties, storeToProperties, storeToXML, storeToXML, storeToXML, storeToXML, toProperties, valueListMethods inherited from class com.norconex.commons.lang.map.ObservableMap
addMapChangeListener, clear, clearMapChangeListeners, containsKey, containsValue, entrySet, getMapChangeListeners, isEmpty, keySet, removeMapChangeListener, size, valuesMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAll
-
Constructor Details
-
QueryString
public QueryString()Constructor. -
QueryString
Default URL character encoding is UTF-8.- Parameters:
urlWithQueryString- a URL from which to extract a query string.
-
QueryString
Constructor.- Parameters:
urlWithQueryString- a URL from which to extract a query string.encoding- character encoding
-
QueryString
Constructor. Default URL character encoding is UTF-8. It is possible to only supply a query string as opposed to an entire URL. Key and values making up a query string are assumed to be URL-encoded. Will throw aUrlExceptionif UTF-8 encoding is not supported.- Parameters:
urlWithQueryString- a URL from which to extract a query string.
-
QueryString
Constructor. It is possible to only supply a query string as opposed to an entire URL. Key and values making up a query string are assumed to be URL-encoded. Will throw aUrlExceptionif the supplied encoding is unsupported or invalid.- Parameters:
urlWithQueryString- a URL from which to extract a query string.encoding- character encoding
-
-
Method Details
-
getEncoding
Gets the character encoding. Default is UTF-8.- Returns:
- character encoding
- Since:
- 1.7.0
-
toString
Convert thisQueryStringto a URL-encoded string representation that can be appended as is to a URL with no query string.- Overrides:
toStringin classProperties- Returns:
- the properties as string
-
applyOnURL
Apply this url QueryString on the given URL. If a query string already exists, it is replaced by this one. Existing fragments are removed.- Parameters:
url- the URL to apply this query string.- Returns:
- url with query string added
-
applyOnURL
Apply this url QueryString on the given URL. If a query string already exists, it is replaced by this one.- Parameters:
url- the URL to apply this query string.- Returns:
- url with query string added
-
equals
-
canEqual
-
hashCode
public int hashCode()
-