Class ArtifactMultimap

java.lang.Object
com.atlassian.bamboo.v2.build.artifact.ArtifactMultimap
All Implemented Interfaces:
ImmutableMultimap<String,Artifact>, Multimap<String,Artifact>

@PublicApi public class ArtifactMultimap extends Object implements Multimap<String,Artifact>
Specialized, non-generic implementation of Multimap<String,Artifact> that is safe to be serialized and thus can be used in CommonContext
  • Constructor Details

    • ArtifactMultimap

      public ArtifactMultimap()
  • Method Details

    • create

      public static ArtifactMultimap create()
    • create

      public static ArtifactMultimap create(Multimap<String,Artifact> multimap)
    • of

      public static ArtifactMultimap of(String key, Artifact value)
    • put

      public void put(String key, Artifact value)
      Description copied from interface: Multimap
      Associates the specified value with the specified key in this multimap. If the multimap previously contained a mapping for the key, the new value is added to the collection of values mapped to that key.
      Specified by:
      put in interface Multimap<String,Artifact>
      Parameters:
      key - key with which the specified value is to be associated
      value - value to be associated with the specified key
    • putAll

      public void putAll(String key, Collection<? extends Artifact> values)
      Description copied from interface: Multimap
      Associates all of the values in the specified collection with the specified key in this multimap. If the multimap previously contained mappings for the key, the new values are added to the collection of values mapped to that key.
      Specified by:
      putAll in interface Multimap<String,Artifact>
      Parameters:
      key - key with which the specified values are to be associated
      values - collection of values to be associated with the specified key
    • get

      public List<Artifact> get(String key)
      Description copied from interface: Multimap
      Retrieves the collection of values associated with the specified key in this multimap.
      Specified by:
      get in interface ImmutableMultimap<String,Artifact>
      Specified by:
      get in interface Multimap<String,Artifact>
      Parameters:
      key - the key whose associated values are to be returned
      Returns:
      the collection of values associated with the specified key, or an empty collection if no values are associated with the key
    • remove

      public void remove(String key, Artifact value)
      Description copied from interface: Multimap
      Removes a single instance of the specified value from the multimap, if it is present.
      Specified by:
      remove in interface Multimap<String,Artifact>
      Parameters:
      key - key with which the specified value is associated
      value - value to be removed from the collection of values for the specified key
    • removeAll

      public void removeAll(String key)
      Description copied from interface: Multimap
      Removes all the values associated with the specified key in this multimap.
      Specified by:
      removeAll in interface Multimap<String,Artifact>
      Parameters:
      key - key whose associated values are to be removed
    • keySet

      public Set<String> keySet()
      Description copied from interface: Multimap
      Returns the set of keys contained in this multimap.
      Specified by:
      keySet in interface ImmutableMultimap<String,Artifact>
      Specified by:
      keySet in interface Multimap<String,Artifact>
      Returns:
      the set of keys contained in this multimap
    • containsKey

      public boolean containsKey(String key)
      Description copied from interface: Multimap
      Returns true if this multimap contains one or more keys to the specified value.
      Specified by:
      containsKey in interface ImmutableMultimap<String,Artifact>
      Specified by:
      containsKey in interface Multimap<String,Artifact>
      Parameters:
      key - key whose presence in this multimap is to be tested
      Returns:
      true if this multimap contains a mapping for the specified key
    • values

      public Collection<Artifact> values()
      Description copied from interface: Multimap
      Returns a collection view of all values associated with keys in this multimap.
      Specified by:
      values in interface ImmutableMultimap<String,Artifact>
      Specified by:
      values in interface Multimap<String,Artifact>
      Returns:
      a collection view of all values contained in this multimap
    • copy

      public ArtifactMultimap copy()
      Description copied from interface: Multimap
      Creates a deep copy of this multimap.
      Specified by:
      copy in interface ImmutableMultimap<String,Artifact>
      Specified by:
      copy in interface Multimap<String,Artifact>
      Returns:
      a new multimap instance containing the same key-value mappings as this multimap
    • entries

      public Collection<Map.Entry<String,Artifact>> entries()
      Description copied from interface: Multimap
      Returns a collection view of all key-value pairs contained in this multimap. Each key-value pair is represented as a Map.Entry. If the multimap allows duplicate values, a separate Map.Entry will be included for each duplicate value.
      Specified by:
      entries in interface ImmutableMultimap<String,Artifact>
      Specified by:
      entries in interface Multimap<String,Artifact>
      Returns:
      a collection view of all key-value pairs contained in this multimap
    • size

      public int size()
      Description copied from interface: Multimap
      Returns the total number of key-value pairs in the multimap.
      Specified by:
      size in interface ImmutableMultimap<String,Artifact>
      Specified by:
      size in interface Multimap<String,Artifact>
      Returns:
      the total number of key-value pairs
    • isEmpty

      public boolean isEmpty()
      Description copied from interface: Multimap
      Returns true if this multimap contains no key-value mappings.
      Specified by:
      isEmpty in interface ImmutableMultimap<String,Artifact>
      Specified by:
      isEmpty in interface Multimap<String,Artifact>
      Returns:
      true if this multimap contains no key-value mappings
    • asMap

      public Map<String,Collection<Artifact>> asMap()
      Description copied from interface: Multimap
      Returns a view of the mappings contained in this multimap as a map from each key to its corresponding values.
      Specified by:
      asMap in interface ImmutableMultimap<String,Artifact>
      Specified by:
      asMap in interface Multimap<String,Artifact>
      Returns:
      a map view of the mappings contained in this multimap
    • inverse

      public Multimap<Artifact,String> inverse()
      Description copied from interface: Multimap
      Creates an inverse view of this multimap. In the inverse multimap, each value in the original multimap becomes a key in the new multimap, and each key in the original becomes part of the set of values associated with the new key. The inverse multimap is also immutable.
      Specified by:
      inverse in interface ImmutableMultimap<String,Artifact>
      Specified by:
      inverse in interface Multimap<String,Artifact>
      Returns:
      a new Multimap instance where the roles of keys and values are swapped
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object