Package com.atlassian.bamboo.utils.collection.multimap


package com.atlassian.bamboo.utils.collection.multimap
  • Class
    Description
     
    ImmutableMultimap is an implementation of a multimap that does not allow modification after its creation.
     
    Implementation of a Multimap that uses a LinkedHashMap to store keys in insertion order and LinkedHashSet to maintain insertion order of values.
    A simple implementation of a list multimap where each key can be associated with multiple values in a list.
    The Multimap interface defines a collection that maps keys to values, similar to Map, but in which each key may be associated with multiple values.
    A simple implementation of a multimap where each key can be associated with multiple values.
    A TreeMultimap is an implementation of a Multimap that uses a TreeMap to store keys in sorted order according to a provided key comparator, and a TreeSet for the values associated with each key to maintain their sorted order as per a provided value comparator.