Construct a multi value map instance
Optional
entries: MultiValueMapEntries<K, V>the map entries that represented as [K, V[]][]
Returns the string representation of the map identifier ('MultiValueMap')
the string representation of the map identifier
Returns the size of map
the size of map
Deletes the entry with the given key
the key to delete
whether the entry has been deleted
Deletes all the entries with any of the given keys
the keys to delete
whether any of the entries has been deleted
Deletes the entry/entries with the given value
the value to delete
whether the entry/entries has been deleted
Deletes all the entries with any of the given values
the values to delete
whether any of the entries has been deleted
Returns whether the map contains all the given keys
the keys to check
whether the map contains all the given keys
Returns whether the map contains all the given values
the values to check
whether matching entry values exactly
whether the map contains all the given values
Returns whether the map contains any of the given keys
the keys to check
whether the map contains any of the given keys
Returns whether the map contains any of the given values
the values to check
whether matching entry values exactly
whether the map contains any of the given values
Returns whether the map contains the given key
the key to check
whether the map contains the given key
Returns whether any entries of the map that contains the given values
the values to check
whether matching entry values exactly
whether any entries of the map that contains the given values
Static
ofConstruct a multi value map instance
Optional
entries: MultiValueMapEntries<K, V>the map entries that represented as [K, V[]][]
a multi value map instance
Map with entries that contains a single key and multiple values
Author
David Hsing