Uses of Interface
org.glassfish.jersey.internal.guava.Multimap
-
Packages that use Multimap Package Description org.glassfish.jersey.internal.guava -
-
Uses of Multimap in org.glassfish.jersey.internal.guava
Subinterfaces of Multimap in org.glassfish.jersey.internal.guava Modifier and Type Interface Description interfaceListMultimap<K,V>AMultimapthat can hold duplicate key-value pairs and that maintains the insertion ordering of values for a given key.interfaceSetMultimap<K,V>AMultimapthat cannot hold duplicate key-value pairs.interfaceSortedSetMultimap<K,V>ASetMultimapwhose set of values for a given key are kept sorted; that is, they comprise aSortedSet.Classes in org.glassfish.jersey.internal.guava that implement Multimap Modifier and Type Class Description classHashMultimap<K,V>Implementation ofMultimapusing hash tables.classTreeMultimap<K,V>Implementation ofMultimapwhose keys and values are ordered by their natural ordering or by supplied comparators.
-