public abstract class org.eclipse.collections.impl.multimap.AbstractMutableMultimap<K, V, C extends org.eclipse.collections.api.collection.MutableCollection<V>> extends org.eclipse.collections.impl.multimap.AbstractMultimap<K, V, C> implements org.eclipse.collections.api.multimap.MutableMultimap<K, V>
minor version: 0
major version: 59
flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
this_class: org.eclipse.collections.impl.multimap.AbstractMutableMultimap
super_class: org.eclipse.collections.impl.multimap.AbstractMultimap
{
protected org.eclipse.collections.api.map.MutableMap<K, C> map;
descriptor: Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0004) ACC_PROTECTED
Signature: Lorg/eclipse/collections/api/map/MutableMap<TK;TC;>;
protected int totalSize;
descriptor: I
flags: (0x0004) ACC_PROTECTED
protected void <init>();
descriptor: ()V
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
invokespecial org.eclipse.collections.impl.multimap.AbstractMultimap.<init>:()V
1: aload 0
aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createMap:()Lorg/eclipse/collections/api/map/MutableMap;
putfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
2: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
protected void <init>(org.eclipse.collections.api.map.MutableMap<K, C>);
descriptor: (Lorg/eclipse/collections/api/map/MutableMap;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokespecial org.eclipse.collections.impl.multimap.AbstractMultimap.<init>:()V
1: aload 0
aload 1
putfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
2: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 3 1 newMap Lorg/eclipse/collections/api/map/MutableMap<TK;TC;>;
Signature: (Lorg/eclipse/collections/api/map/MutableMap<TK;TC;>;)V
MethodParameters:
Name Flags
newMap
protected void <init>(int);
descriptor: (I)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
invokespecial org.eclipse.collections.impl.multimap.AbstractMultimap.<init>:()V
1: aload 0
aload 0
iload 1
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createMapWithKeyCount:(I)Lorg/eclipse/collections/api/map/MutableMap;
putfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
2: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 3 1 size I
MethodParameters:
Name Flags
size
protected void <init>(org.eclipse.collections.api.tuple.Pair<K, V>[]);
descriptor: ([Lorg/eclipse/collections/api/tuple/Pair;)V
flags: (0x0084) ACC_PROTECTED, ACC_VARARGS
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
arraylength
invokespecial org.eclipse.collections.impl.multimap.AbstractMutableMultimap.<init>:(I)V
1: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.putAllPairs:([Lorg/eclipse/collections/api/tuple/Pair;)Z
pop
2: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 3 1 pairs [Lorg/eclipse/collections/api/tuple/Pair;
Signature: ([Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;)V
MethodParameters:
Name Flags
pairs
protected void <init>(java.lang.Iterable<org.eclipse.collections.api.tuple.Pair<K, V>>);
descriptor: (Ljava/lang/Iterable;)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=4, args_size=2
start local 0 start local 1 0: aload 0
invokespecial org.eclipse.collections.impl.multimap.AbstractMutableMultimap.<init>:()V
1: aload 1
invokeinterface java.lang.Iterable.iterator:()Ljava/util/Iterator;
astore 3
goto 4
StackMap locals: org.eclipse.collections.impl.multimap.AbstractMutableMultimap java.lang.Iterable top java.util.Iterator
StackMap stack:
2: aload 3
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast org.eclipse.collections.api.tuple.Pair
astore 2
start local 2 3: aload 0
aload 2
invokeinterface org.eclipse.collections.api.tuple.Pair.getOne:()Ljava/lang/Object;
aload 2
invokeinterface org.eclipse.collections.api.tuple.Pair.getTwo:()Ljava/lang/Object;
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.put:(Ljava/lang/Object;Ljava/lang/Object;)Z
pop
end local 2 4: StackMap locals:
StackMap stack:
aload 3
invokeinterface java.util.Iterator.hasNext:()Z
ifne 2
5: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 6 1 inputIterable Ljava/lang/Iterable<Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;>;
3 4 2 single Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;
Signature: (Ljava/lang/Iterable<Lorg/eclipse/collections/api/tuple/Pair<TK;TV;>;>;)V
MethodParameters:
Name Flags
inputIterable
protected abstract org.eclipse.collections.api.map.MutableMap<K, C> createMap();
descriptor: ()Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TK;TC;>;
protected abstract org.eclipse.collections.api.map.MutableMap<K, C> createMapWithKeyCount(int);
descriptor: (I)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0404) ACC_PROTECTED, ACC_ABSTRACT
Signature: (I)Lorg/eclipse/collections/api/map/MutableMap<TK;TC;>;
MethodParameters:
Name Flags
keyCount
protected org.eclipse.collections.api.map.MutableMap<K, C> getMap();
descriptor: ()Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0004) ACC_PROTECTED
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TK;TC;>;
public int size();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
protected void incrementTotalSize();
descriptor: ()V
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
dup
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
iconst_1
iadd
putfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
protected void decrementTotalSize();
descriptor: ()V
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=1, args_size=1
start local 0 0: aload 0
dup
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
iconst_1
isub
putfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
protected void addToTotalSize(int);
descriptor: (I)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
dup
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
iload 1
iadd
putfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 2 1 value I
MethodParameters:
Name Flags
value
protected void subtractFromTotalSize(int);
descriptor: (I)V
flags: (0x0004) ACC_PROTECTED
Code:
stack=3, locals=2, args_size=2
start local 0 start local 1 0: aload 0
dup
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
iload 1
isub
putfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 2 1 value I
MethodParameters:
Name Flags
value
protected void clearTotalSize();
descriptor: ()V
flags: (0x0004) ACC_PROTECTED
Code:
stack=2, locals=1, args_size=1
start local 0 0: aload 0
iconst_0
putfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.totalSize:I
1: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
public int sizeDistinct();
descriptor: ()I
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
invokeinterface org.eclipse.collections.api.map.MutableMap.size:()I
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
public boolean isEmpty();
descriptor: ()Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.size:()I
ifne 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
public boolean put(K, );
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=4, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.getIfAbsentPutCollection:(Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
astore 3
start local 3 1: aload 3
aload 2
invokeinterface org.eclipse.collections.api.collection.MutableCollection.add:(Ljava/lang/Object;)Z
ifeq 4
2: aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.incrementTotalSize:()V
3: iconst_1
ireturn
4: StackMap locals: org.eclipse.collections.api.collection.MutableCollection
StackMap stack:
iconst_0
ireturn
end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 5 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 5 1 key TK;
0 5 2 value TV;
1 5 3 collection TC;
Signature: (TK;TV;)Z
MethodParameters:
Name Flags
key
value
public boolean remove(java.lang.Object, java.lang.Object);
descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=5, args_size=3
start local 0 start local 1 start local 2 0: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.MutableMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast org.eclipse.collections.api.collection.MutableCollection
astore 3
start local 3 1: aload 3
ifnonnull 3
2: iconst_0
ireturn
3: StackMap locals: org.eclipse.collections.api.collection.MutableCollection
StackMap stack:
aload 3
aload 2
invokeinterface org.eclipse.collections.api.collection.MutableCollection.remove:(Ljava/lang/Object;)Z
istore 4
start local 4 4: iload 4
ifeq 8
5: aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.decrementTotalSize:()V
6: aload 3
invokeinterface org.eclipse.collections.api.collection.MutableCollection.isEmpty:()Z
ifeq 8
7: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.MutableMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
pop
8: StackMap locals: int
StackMap stack:
iload 4
ireturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 9 1 key Ljava/lang/Object;
0 9 2 value Ljava/lang/Object;
1 9 3 collection TC;
4 9 4 changed Z
MethodParameters:
Name Flags
key
value
public boolean putAll(K, java.lang.Iterable<? extends V>);
descriptor: (Ljava/lang/Object;Ljava/lang/Iterable;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=3
start local 0 start local 1 start local 2 0: aload 2
invokestatic org.eclipse.collections.impl.utility.Iterate.notEmpty:(Ljava/lang/Iterable;)Z
ifeq 1
aload 0
aload 1
aload 2
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.putAllNotEmpty:(Ljava/lang/Object;Ljava/lang/Iterable;)Z
ifeq 1
iconst_1
ireturn
StackMap locals:
StackMap stack:
1: iconst_0
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 2 1 key TK;
0 2 2 values Ljava/lang/Iterable<+TV;>;
Signature: (TK;Ljava/lang/Iterable<+TV;>;)Z
MethodParameters:
Name Flags
key
values
private boolean putAllNotEmpty(K, java.lang.Iterable<? extends V>);
descriptor: (Ljava/lang/Object;Ljava/lang/Iterable;)Z
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=6, args_size=3
start local 0 start local 1 start local 2 0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.getIfAbsentPutCollection:(Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
astore 3
start local 3 1: aload 3
invokeinterface org.eclipse.collections.api.collection.MutableCollection.size:()I
istore 4
start local 4 2: aload 2
aload 3
invokestatic org.eclipse.collections.impl.utility.Iterate.addAllTo:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.collection.MutableCollection
invokeinterface org.eclipse.collections.api.collection.MutableCollection.size:()I
istore 5
start local 5 3: aload 0
iload 5
iload 4
isub
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.addToTotalSize:(I)V
4: iload 5
iload 4
if_icmple 5
iconst_1
ireturn
StackMap locals: org.eclipse.collections.api.collection.MutableCollection int int
StackMap stack:
5: iconst_0
ireturn
end local 5 end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 6 1 key TK;
0 6 2 values Ljava/lang/Iterable<+TV;>;
1 6 3 collection TC;
2 6 4 oldSize I
3 6 5 newSize I
Signature: (TK;Ljava/lang/Iterable<+TV;>;)Z
MethodParameters:
Name Flags
key
values
public <KK extends K, VV extends V> boolean putAll(org.eclipse.collections.api.multimap.Multimap<KK, VV>);
descriptor: (Lorg/eclipse/collections/api/multimap/Multimap;)Z
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 1
instanceof org.eclipse.collections.impl.multimap.AbstractMutableMultimap
ifeq 2
1: aload 0
aload 1
checkcast org.eclipse.collections.impl.multimap.AbstractMutableMultimap
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.putAllAbstractMutableMultimap:(Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap;)Z
ireturn
2: StackMap locals:
StackMap stack:
aload 0
aload 1
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.putAllReadOnlyMultimap:(Lorg/eclipse/collections/api/multimap/Multimap;)Z
ireturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 3 1 multimap Lorg/eclipse/collections/api/multimap/Multimap<TKK;TVV;>;
Signature: <KK:TK;VV:TV;>(Lorg/eclipse/collections/api/multimap/Multimap<TKK;TVV;>;)Z
MethodParameters:
Name Flags
multimap
private <KK extends K, VV extends V> boolean putAllReadOnlyMultimap(org.eclipse.collections.api.multimap.Multimap<KK, VV>);
descriptor: (Lorg/eclipse/collections/api/multimap/Multimap;)Z
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.multimap.AbstractMutableMultimap$1PutProcedure
dup
aload 0
invokespecial org.eclipse.collections.impl.multimap.AbstractMutableMultimap$1PutProcedure.<init>:(Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap;)V
astore 2
start local 2 1: aload 1
invokeinterface org.eclipse.collections.api.multimap.Multimap.keyMultiValuePairsView:()Lorg/eclipse/collections/api/RichIterable;
aload 2
invokeinterface org.eclipse.collections.api.RichIterable.forEach:(Lorg/eclipse/collections/api/block/procedure/Procedure;)V
2: aload 2
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap$1PutProcedure.changed:Z
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 3 1 multimap Lorg/eclipse/collections/api/multimap/Multimap<TKK;TVV;>;
1 3 2 putProcedure Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap$1PutProcedure;
Signature: <KK:TK;VV:TV;>(Lorg/eclipse/collections/api/multimap/Multimap<TKK;TVV;>;)Z
MethodParameters:
Name Flags
multimap
private <KK extends K, VV extends V> boolean putAllAbstractMutableMultimap(org.eclipse.collections.impl.multimap.AbstractMutableMultimap<KK, VV, org.eclipse.collections.api.collection.MutableCollection<VV>>);
descriptor: (Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap;)Z
flags: (0x0002) ACC_PRIVATE
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: new org.eclipse.collections.impl.multimap.AbstractMutableMultimap$2PutProcedure
dup
aload 0
invokespecial org.eclipse.collections.impl.multimap.AbstractMutableMultimap$2PutProcedure.<init>:(Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap;)V
astore 2
start local 2 1: aload 1
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 2
invokeinterface org.eclipse.collections.api.map.MutableMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
2: aload 2
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap$2PutProcedure.changed:Z
ireturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 3 1 other Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TKK;TVV;Lorg/eclipse/collections/api/collection/MutableCollection<TVV;>;>;
1 3 2 putProcedure Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap$2PutProcedure;
Signature: <KK:TK;VV:TV;>(Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TKK;TVV;Lorg/eclipse/collections/api/collection/MutableCollection<TVV;>;>;)Z
MethodParameters:
Name Flags
other
public C replaceValues(K, java.lang.Iterable<? extends V>);
descriptor: (Ljava/lang/Object;Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=5, args_size=3
start local 0 start local 1 start local 2 0: aload 2
invokestatic org.eclipse.collections.impl.utility.Iterate.isEmpty:(Ljava/lang/Iterable;)Z
ifeq 2
1: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.removeAll:(Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
areturn
2: StackMap locals:
StackMap stack:
aload 2
aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createCollection:()Lorg/eclipse/collections/api/RichIterable;
checkcast org.eclipse.collections.api.collection.MutableCollection
invokestatic org.eclipse.collections.impl.utility.Iterate.addAllTo:(Ljava/lang/Iterable;Ljava/util/Collection;)Ljava/util/Collection;
checkcast org.eclipse.collections.api.collection.MutableCollection
astore 3
start local 3 3: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 1
aload 3
invokeinterface org.eclipse.collections.api.map.MutableMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
checkcast org.eclipse.collections.api.collection.MutableCollection
astore 4
start local 4 4: aload 4
ifnonnull 5
aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createCollection:()Lorg/eclipse/collections/api/RichIterable;
checkcast org.eclipse.collections.api.collection.MutableCollection
goto 6
StackMap locals: org.eclipse.collections.api.collection.MutableCollection org.eclipse.collections.api.collection.MutableCollection
StackMap stack:
5: aload 4
StackMap locals:
StackMap stack: org.eclipse.collections.api.collection.MutableCollection
6: astore 4
7: aload 0
aload 3
invokeinterface org.eclipse.collections.api.collection.MutableCollection.size:()I
aload 4
invokeinterface org.eclipse.collections.api.collection.MutableCollection.size:()I
isub
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.addToTotalSize:(I)V
8: aload 4
invokeinterface org.eclipse.collections.api.collection.MutableCollection.asUnmodifiable:()Lorg/eclipse/collections/api/collection/MutableCollection;
areturn
end local 4 end local 3 end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 9 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 9 1 key TK;
0 9 2 values Ljava/lang/Iterable<+TV;>;
3 9 3 newValues TC;
4 9 4 oldValues TC;
Signature: (TK;Ljava/lang/Iterable<+TV;>;)TC;
MethodParameters:
Name Flags
key
values
public C removeAll();
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=3, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 1
invokeinterface org.eclipse.collections.api.map.MutableMap.remove:(Ljava/lang/Object;)Ljava/lang/Object;
checkcast org.eclipse.collections.api.collection.MutableCollection
astore 2
start local 2 1: aload 2
ifnonnull 2
aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createCollection:()Lorg/eclipse/collections/api/RichIterable;
checkcast org.eclipse.collections.api.collection.MutableCollection
goto 3
StackMap locals: org.eclipse.collections.api.collection.MutableCollection
StackMap stack:
2: aload 2
StackMap locals:
StackMap stack: org.eclipse.collections.api.collection.MutableCollection
3: astore 2
4: aload 0
aload 2
invokeinterface org.eclipse.collections.api.collection.MutableCollection.size:()I
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.subtractFromTotalSize:(I)V
5: aload 2
invokeinterface org.eclipse.collections.api.collection.MutableCollection.asUnmodifiable:()Lorg/eclipse/collections/api/collection/MutableCollection;
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 6 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 6 1 key Ljava/lang/Object;
1 6 2 collection TC;
Signature: (Ljava/lang/Object;)TC;
MethodParameters:
Name Flags
key
public void clear();
descriptor: ()V
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=3, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
invokeinterface org.eclipse.collections.api.map.MutableMap.values:()Ljava/util/Collection;
invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
astore 2
goto 3
StackMap locals: org.eclipse.collections.impl.multimap.AbstractMutableMultimap top java.util.Iterator
StackMap stack:
1: aload 2
invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
checkcast org.eclipse.collections.api.collection.MutableCollection
astore 1
start local 1 2: aload 1
invokeinterface org.eclipse.collections.api.collection.MutableCollection.clear:()V
end local 1 3: StackMap locals:
StackMap stack:
aload 2
invokeinterface java.util.Iterator.hasNext:()Z
ifne 1
4: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
invokeinterface org.eclipse.collections.api.map.MutableMap.clear:()V
5: aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.clearTotalSize:()V
6: return
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 7 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
2 3 1 collection TC;
public org.eclipse.collections.api.set.SetIterable<K> keySet();
descriptor: ()Lorg/eclipse/collections/api/set/SetIterable;
flags: (0x0001) ACC_PUBLIC
Code:
stack=1, locals=1, args_size=1
start local 0 0: aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.getMap:()Lorg/eclipse/collections/api/map/MutableMap;
invokeinterface org.eclipse.collections.api.map.MutableMap.keySet:()Ljava/util/Set;
invokestatic org.eclipse.collections.impl.set.mutable.UnmodifiableMutableSet.of:(Ljava/util/Set;)Lorg/eclipse/collections/impl/set/mutable/UnmodifiableMutableSet;
areturn
end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
Signature: ()Lorg/eclipse/collections/api/set/SetIterable<TK;>;
public C get();
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 1
aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createCollectionBlock:()Lorg/eclipse/collections/api/block/function/Function;
aload 0
invokeinterface org.eclipse.collections.api.map.MutableMap.getIfAbsentWith:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;Ljava/lang/Object;)Ljava/lang/Object;
checkcast org.eclipse.collections.api.collection.MutableCollection
invokeinterface org.eclipse.collections.api.collection.MutableCollection.asUnmodifiable:()Lorg/eclipse/collections/api/collection/MutableCollection;
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 1 1 key TK;
Signature: (TK;)TC;
MethodParameters:
Name Flags
key
private C getIfAbsentPutCollection();
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
flags: (0x0002) ACC_PRIVATE
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 1
aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createCollectionBlock:()Lorg/eclipse/collections/api/block/function/Function;
aload 0
invokeinterface org.eclipse.collections.api.map.MutableMap.getIfAbsentPutWith:(Ljava/lang/Object;Lorg/eclipse/collections/api/block/function/Function;Ljava/lang/Object;)Ljava/lang/Object;
checkcast org.eclipse.collections.api.collection.MutableCollection
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 1 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 1 1 key TK;
Signature: (TK;)TC;
MethodParameters:
Name Flags
key
public org.eclipse.collections.api.map.MutableMap<K, org.eclipse.collections.api.RichIterable<V>> toMap();
descriptor: ()Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=1
start local 0 0: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
invokeinterface org.eclipse.collections.api.map.MutableMap.newEmpty:()Lorg/eclipse/collections/api/map/MutableMap;
astore 1
start local 1 1: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 1
invokedynamic value(Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/block/procedure/Procedure2;
Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
Method arguments:
(Ljava/lang/Object;Ljava/lang/Object;)V
org/eclipse/collections/impl/multimap/AbstractMutableMultimap.lambda$0(Lorg/eclipse/collections/api/map/MutableMap;Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V (6)
(Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V
1
invokeinterface org.eclipse.collections.api.map.MutableMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
2: aload 1
areturn
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
1 3 1 result Lorg/eclipse/collections/api/map/MutableMap<TK;Lorg/eclipse/collections/api/RichIterable<TV;>;>;
Signature: ()Lorg/eclipse/collections/api/map/MutableMap<TK;Lorg/eclipse/collections/api/RichIterable<TV;>;>;
public <R extends java.util.Collection<V>> org.eclipse.collections.api.map.MutableMap<K, R> toMap(org.eclipse.collections.api.block.function.Function0<R>);
descriptor: (Lorg/eclipse/collections/api/block/function/Function0;)Lorg/eclipse/collections/api/map/MutableMap;
flags: (0x0001) ACC_PUBLIC
Code:
stack=3, locals=3, args_size=2
start local 0 start local 1 0: aload 0
aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
invokeinterface org.eclipse.collections.api.map.MutableMap.size:()I
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createMapWithKeyCount:(I)Lorg/eclipse/collections/api/map/MutableMap;
astore 2
start local 2 1: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 1
aload 2
invokedynamic value(Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/block/procedure/Procedure2;
Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
Method arguments:
(Ljava/lang/Object;Ljava/lang/Object;)V
org/eclipse/collections/impl/multimap/AbstractMutableMultimap.lambda$1(Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/map/MutableMap;Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V (6)
(Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V
1
invokeinterface org.eclipse.collections.api.map.MutableMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
2: aload 2
areturn
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 3 1 collectionFactory Lorg/eclipse/collections/api/block/function/Function0<TR;>;
1 3 2 result Lorg/eclipse/collections/api/map/MutableMap<TK;TR;>;
Signature: <R::Ljava/util/Collection<TV;>;>(Lorg/eclipse/collections/api/block/function/Function0<TR;>;)Lorg/eclipse/collections/api/map/MutableMap<TK;TR;>;
MethodParameters:
Name Flags
collectionFactory
public void writeExternal(java.io.ObjectOutput);
descriptor: (Ljava/io/ObjectOutput;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=4, locals=2, args_size=2
start local 0 start local 1 0: aload 1
aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
invokeinterface org.eclipse.collections.api.map.MutableMap.size:()I
invokeinterface java.io.ObjectOutput.writeInt:(I)V
1: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
new org.eclipse.collections.impl.block.procedure.checked.MultimapKeyValuesSerializingProcedure
dup
aload 1
invokespecial org.eclipse.collections.impl.block.procedure.checked.MultimapKeyValuesSerializingProcedure.<init>:(Ljava/io/ObjectOutput;)V
invokeinterface org.eclipse.collections.api.map.MutableMap.forEachKeyValue:(Lorg/eclipse/collections/api/block/procedure/Procedure2;)V
2: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 3 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 3 1 out Ljava/io/ObjectOutput;
Exceptions:
throws java.io.IOException
MethodParameters:
Name Flags
out
public void readExternal(java.io.ObjectInput);
descriptor: (Ljava/io/ObjectInput;)V
flags: (0x0001) ACC_PUBLIC
Code:
stack=2, locals=2, args_size=2
start local 0 start local 1 0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.readValuesFrom:(Ljava/io/ObjectInput;)V
1: return
end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 2 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 2 1 in Ljava/io/ObjectInput;
Exceptions:
throws java.io.IOException, java.lang.ClassNotFoundException
MethodParameters:
Name Flags
in
void readValuesFrom(java.io.ObjectInput);
descriptor: (Ljava/io/ObjectInput;)V
flags: (0x0000)
Code:
stack=3, locals=8, args_size=2
start local 0 start local 1 0: aload 1
invokeinterface java.io.ObjectInput.readInt:()I
istore 2
start local 2 1: aload 0
aload 0
iload 2
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createMapWithKeyCount:(I)Lorg/eclipse/collections/api/map/MutableMap;
putfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
2: iconst_0
istore 3
start local 3 3: goto 15
4: StackMap locals: int int
StackMap stack:
aload 1
invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
astore 4
start local 4 5: aload 1
invokeinterface java.io.ObjectInput.readInt:()I
istore 5
start local 5 6: aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.createCollection:()Lorg/eclipse/collections/api/RichIterable;
checkcast org.eclipse.collections.api.collection.MutableCollection
astore 6
start local 6 7: iconst_0
istore 7
start local 7 8: goto 11
9: StackMap locals: org.eclipse.collections.impl.multimap.AbstractMutableMultimap java.io.ObjectInput int int java.lang.Object int org.eclipse.collections.api.collection.MutableCollection int
StackMap stack:
aload 6
aload 1
invokeinterface java.io.ObjectInput.readObject:()Ljava/lang/Object;
invokeinterface org.eclipse.collections.api.collection.MutableCollection.add:(Ljava/lang/Object;)Z
pop
10: iinc 7 1
StackMap locals:
StackMap stack:
11: iload 7
iload 5
if_icmplt 9
end local 7 12: aload 0
iload 5
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.addToTotalSize:(I)V
13: aload 0
getfield org.eclipse.collections.impl.multimap.AbstractMutableMultimap.map:Lorg/eclipse/collections/api/map/MutableMap;
aload 4
aload 6
invokeinterface org.eclipse.collections.api.map.MutableMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 6 end local 5 end local 4 14: iinc 3 1
StackMap locals: org.eclipse.collections.impl.multimap.AbstractMutableMultimap java.io.ObjectInput int int
StackMap stack:
15: iload 3
iload 2
if_icmplt 4
end local 3 16: return
end local 2 end local 1 end local 0 LocalVariableTable:
Start End Slot Name Signature
0 17 0 this Lorg/eclipse/collections/impl/multimap/AbstractMutableMultimap<TK;TV;TC;>;
0 17 1 in Ljava/io/ObjectInput;
1 17 2 keyCount I
3 16 3 k I
5 14 4 key TK;
6 14 5 valuesSize I
7 14 6 values TC;
8 12 7 v I
Exceptions:
throws java.io.IOException, java.lang.ClassNotFoundException
MethodParameters:
Name Flags
in
public org.eclipse.collections.api.RichIterable removeAll(java.lang.Object);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.removeAll:(Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
areturn
LocalVariableTable:
Start End Slot Name Signature
protected org.eclipse.collections.api.map.MapIterable getMap();
descriptor: ()Lorg/eclipse/collections/api/map/MapIterable;
flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=1, locals=1, args_size=1
0: aload 0
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.getMap:()Lorg/eclipse/collections/api/map/MutableMap;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable get(java.lang.Object);
descriptor: (Ljava/lang/Object;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=2, locals=2, args_size=2
0: aload 0
aload 1
checkcast java.lang.Object
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.get:(Ljava/lang/Object;)Lorg/eclipse/collections/api/collection/MutableCollection;
areturn
LocalVariableTable:
Start End Slot Name Signature
public org.eclipse.collections.api.RichIterable replaceValues(java.lang.Object, java.lang.Iterable);
descriptor: (Ljava/lang/Object;Ljava/lang/Iterable;)Lorg/eclipse/collections/api/RichIterable;
flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
Code:
stack=3, locals=3, args_size=3
0: aload 0
aload 1
checkcast java.lang.Object
aload 2
checkcast java.lang.Iterable
invokevirtual org.eclipse.collections.impl.multimap.AbstractMutableMultimap.replaceValues:(Ljava/lang/Object;Ljava/lang/Iterable;)Lorg/eclipse/collections/api/collection/MutableCollection;
areturn
LocalVariableTable:
Start End Slot Name Signature
private static void lambda$0(org.eclipse.collections.api.map.MutableMap, java.lang.Object, org.eclipse.collections.api.collection.MutableCollection);
descriptor: (Lorg/eclipse/collections/api/map/MutableMap;Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V
flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
Code:
stack=3, locals=4, args_size=3
start local 1 start local 2 0: aload 2
invokeinterface org.eclipse.collections.api.collection.MutableCollection.newEmpty:()Lorg/eclipse/collections/api/collection/MutableCollection;
astore 3
start local 3 1: aload 3
aload 2
invokeinterface org.eclipse.collections.api.collection.MutableCollection.addAll:(Ljava/util/Collection;)Z
pop
2: aload 0
aload 1
aload 3
invokeinterface org.eclipse.collections.api.map.MutableMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 3 3: return
end local 2 end local 1 LocalVariableTable:
Start End Slot Name Signature
0 4 1 key TK;
0 4 2 collection TC;
1 3 3 mutableCollection Lorg/eclipse/collections/api/collection/MutableCollection<TV;>;
private static void lambda$1(org.eclipse.collections.api.block.function.Function0, org.eclipse.collections.api.map.MutableMap, java.lang.Object, org.eclipse.collections.api.collection.MutableCollection);
descriptor: (Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/map/MutableMap;Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V
flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
Code:
stack=3, locals=5, args_size=4
start local 2 start local 3 0: aload 0
invokeinterface org.eclipse.collections.api.block.function.Function0.value:()Ljava/lang/Object;
checkcast java.util.Collection
astore 4
start local 4 1: aload 4
aload 3
invokeinterface java.util.Collection.addAll:(Ljava/util/Collection;)Z
pop
2: aload 1
aload 2
aload 4
invokeinterface org.eclipse.collections.api.map.MutableMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
pop
end local 4 3: return
end local 3 end local 2 LocalVariableTable:
Start End Slot Name Signature
0 4 2 key TK;
0 4 3 collection TC;
1 3 4 mutableCollection TR;
private static java.lang.Object $deserializeLambda$(java.lang.invoke.SerializedLambda);
descriptor: (Ljava/lang/invoke/SerializedLambda;)Ljava/lang/Object;
flags: (0x100a) ACC_PRIVATE, ACC_STATIC, ACC_SYNTHETIC
Code:
stack=6, locals=3, args_size=1
0: aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodName:()Ljava/lang/String;
astore 1
iconst_m1
istore 2
aload 1
invokevirtual java.lang.String.hashCode:()I
lookupswitch { // 2
-1647345005: 1
-1647345004: 2
default: 3
}
StackMap locals: java.lang.String int
StackMap stack:
1: aload 1
ldc "lambda$0"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifeq 3
iconst_0
istore 2
goto 3
StackMap locals:
StackMap stack:
2: aload 1
ldc "lambda$1"
invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
ifeq 3
iconst_1
istore 2
StackMap locals:
StackMap stack:
3: iload 2
lookupswitch { // 2
0: 4
1: 5
default: 6
}
StackMap locals:
StackMap stack:
4: aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
bipush 6
if_icmpne 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
ldc "org/eclipse/collections/api/block/procedure/Procedure2"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
ldc "value"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
ldc "(Ljava/lang/Object;Ljava/lang/Object;)V"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
ldc "org/eclipse/collections/impl/multimap/AbstractMutableMultimap"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
ldc "(Lorg/eclipse/collections/api/map/MutableMap;Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
iconst_0
invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
checkcast org.eclipse.collections.api.map.MutableMap
invokedynamic value(Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/block/procedure/Procedure2;
Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
Method arguments:
(Ljava/lang/Object;Ljava/lang/Object;)V
org/eclipse/collections/impl/multimap/AbstractMutableMultimap.lambda$0(Lorg/eclipse/collections/api/map/MutableMap;Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V (6)
(Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V
1
areturn
StackMap locals:
StackMap stack:
5: aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodKind:()I
bipush 6
if_icmpne 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceClass:()Ljava/lang/String;
ldc "org/eclipse/collections/api/block/procedure/Procedure2"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodName:()Ljava/lang/String;
ldc "value"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getFunctionalInterfaceMethodSignature:()Ljava/lang/String;
ldc "(Ljava/lang/Object;Ljava/lang/Object;)V"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplClass:()Ljava/lang/String;
ldc "org/eclipse/collections/impl/multimap/AbstractMutableMultimap"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
invokevirtual java.lang.invoke.SerializedLambda.getImplMethodSignature:()Ljava/lang/String;
ldc "(Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/map/MutableMap;Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V"
invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
ifeq 6
aload 0
iconst_0
invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
checkcast org.eclipse.collections.api.block.function.Function0
aload 0
iconst_1
invokevirtual java.lang.invoke.SerializedLambda.getCapturedArg:(I)Ljava/lang/Object;
checkcast org.eclipse.collections.api.map.MutableMap
invokedynamic value(Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/map/MutableMap;)Lorg/eclipse/collections/api/block/procedure/Procedure2;
Bootstrap: invokestatic java.lang.invoke.LambdaMetafactory.altMetafactory:(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;[Ljava/lang/Object;)Ljava/lang/invoke/CallSite;
Method arguments:
(Ljava/lang/Object;Ljava/lang/Object;)V
org/eclipse/collections/impl/multimap/AbstractMutableMultimap.lambda$1(Lorg/eclipse/collections/api/block/function/Function0;Lorg/eclipse/collections/api/map/MutableMap;Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V (6)
(Ljava/lang/Object;Lorg/eclipse/collections/api/collection/MutableCollection;)V
1
areturn
StackMap locals:
StackMap stack:
6: new java.lang.IllegalArgumentException
dup
ldc "Invalid lambda deserialization"
invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
athrow
LocalVariableTable:
Start End Slot Name Signature
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;C::Lorg/eclipse/collections/api/collection/MutableCollection<TV;>;>Lorg/eclipse/collections/impl/multimap/AbstractMultimap<TK;TV;TC;>;Lorg/eclipse/collections/api/multimap/MutableMultimap<TK;TV;>;
SourceFile: "AbstractMutableMultimap.java"
NestMembers:
org.eclipse.collections.impl.multimap.AbstractMutableMultimap$1PutProcedure org.eclipse.collections.impl.multimap.AbstractMutableMultimap$2PutProcedure
InnerClasses:
public final Lookup = java.lang.invoke.MethodHandles$Lookup of java.lang.invoke.MethodHandles
PutProcedure = org.eclipse.collections.impl.multimap.AbstractMutableMultimap$1PutProcedure
PutProcedure = org.eclipse.collections.impl.multimap.AbstractMutableMultimap$2PutProcedure