Uses of Interface
org.glassfish.tyrus.core.uri.internal.MultivaluedMap
-
Packages that use MultivaluedMap Package Description org.glassfish.tyrus.core.uri.internal Common classes that provide support for URI templates, encoding/decoding of URI components and multivalued collections. -
-
Uses of MultivaluedMap in org.glassfish.tyrus.core.uri.internal
Classes in org.glassfish.tyrus.core.uri.internal that implement MultivaluedMap Modifier and Type Class Description classAbstractMultivaluedMap<K,V>Abstract skeleton implementation of aMultivaluedMapthat is backed by a [key, multi-value] store represented as aMap<K, List<V>>.classMultivaluedHashMap<K,V>A hash table based implementation ofMultivaluedMapinterface.classMultivaluedStringMapAn implementation ofMultivaluedMapwhere keys and values are instances of String.Methods in org.glassfish.tyrus.core.uri.internal that return MultivaluedMap Modifier and Type Method Description static MultivaluedMap<java.lang.String,java.lang.String>UriComponent. decodeMatrix(java.lang.String pathSegment, boolean decode)Decode the matrix component of a URI path segment.static MultivaluedMap<java.lang.String,java.lang.String>UriComponent. decodeQuery(java.lang.String q, boolean decode)Decode the query component of a URI.static MultivaluedMap<java.lang.String,java.lang.String>UriComponent. decodeQuery(java.lang.String q, boolean decodeNames, boolean decodeValues)Decode the query component of a URI.static MultivaluedMap<java.lang.String,java.lang.String>UriComponent. decodeQuery(java.net.URI u, boolean decode)Decode the query component of a URI.MultivaluedMap<java.lang.String,java.lang.String>PathSegment. getMatrixParameters()Get a map of the matrix parameters associated with the path segment.Methods in org.glassfish.tyrus.core.uri.internal with parameters of type MultivaluedMap Modifier and Type Method Description booleanAbstractMultivaluedMap. equalsIgnoreValueOrder(MultivaluedMap<K,V> omap)booleanMultivaluedMap. equalsIgnoreValueOrder(MultivaluedMap<K,V> otherMap)Compare the specified map with this map for equality modulo the order of values for each key.Constructors in org.glassfish.tyrus.core.uri.internal with parameters of type MultivaluedMap Constructor Description MultivaluedHashMap(MultivaluedMap<? extends K,? extends V> map)Constructs a new multivalued hash map with the same mappings as the specifiedMultivaluedMap.MultivaluedStringMap(MultivaluedMap<? extends java.lang.String,? extends java.lang.String> map)
-