| Modifier and Type | Class and Description |
|---|---|
(package private) class |
AbstractMultivaluedMap<K,V>
Abstract skeleton implementation of a
MultivaluedMap that is backed by a [key, multi-value] store represented
as a Map Map<K, List<V>>. |
(package private) class |
MultivaluedHashMap<K,V>
A hash table based implementation of
MultivaluedMap interface. |
(package private) class |
MultivaluedStringMap
An implementation of
MultivaluedMap where keys and values are
instances of String. |
| Modifier and Type | Field and Description |
|---|---|
private MultivaluedMap<String,String> |
UriComponent.PathSegment.matrixParameters |
private MultivaluedMap<String,String> |
UriBuilder.matrixParams |
private MultivaluedMap<String,String> |
UriBuilder.queryParams |
| Modifier and Type | Method and Description |
|---|---|
(package private) static MultivaluedMap<String,String> |
UriComponent.decodeMatrix(String pathSegment,
boolean decode)
Decode the matrix component of a URI path segment.
|
(package private) static MultivaluedMap<String,String> |
UriComponent.decodeQuery(String q,
boolean decode)
Decode the query component of a URI.
|
(package private) static MultivaluedMap<String,String> |
UriComponent.decodeQuery(String q,
boolean decodeNames,
boolean decodeValues)
Decode the query component of a URI.
|
(package private) static MultivaluedMap<String,String> |
UriComponent.decodeQuery(URI u,
boolean decode)
Decode the query component of a URI.
|
(package private) MultivaluedMap<String,String> |
UriComponent.PathSegment.getMatrixParameters() |
| Modifier and Type | Method and Description |
|---|---|
private static void |
UriComponent.decodeMatrixParam(MultivaluedMap<String,String> params,
String param,
boolean decode) |
private static void |
UriComponent.decodeQueryParam(MultivaluedMap<String,String> params,
String param,
boolean decodeNames,
boolean decodeValues) |
boolean |
MultivaluedMap.equalsIgnoreValueOrder(MultivaluedMap<K,V> otherMap)
Compare the specified map with this map for equality modulo the order
of values for each key.
|
boolean |
AbstractMultivaluedMap.equalsIgnoreValueOrder(MultivaluedMap<K,V> omap)
Compare the specified map with this map for equality modulo the order
of values for each key.
|
private <T extends K,U extends V> |
MultivaluedHashMap.putAll(MultivaluedMap<T,U> map)
This private method is used by the copy constructor to avoid exposing
additional generic parameters through the API documentation.
|
| Constructor and Description |
|---|
MultivaluedHashMap(MultivaluedMap<? extends K,? extends V> map)
Constructs a new multivalued hash map with the same mappings as the
specified
MultivaluedMap . |
MultivaluedStringMap(MultivaluedMap<? extends String,? extends String> map) |
PathSegment(String path,
boolean decode,
MultivaluedMap<String,String> matrixParameters) |
Copyright © 2014 Sven Strittmatter. All Rights Reserved.