AbstractMultimap is implements Serializable.
In my eyes actual datas are saved to map and totalSize variables.
But both variables are declared with transient keyword.
This fact means that there's no serialization right?
private transient Map<K, Collection<V>> map;
private transient int totalSize;