class org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap extends java.util.AbstractMap<K, java.util.Collection<V>>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap
  super_class: java.util.AbstractMap
{
  final transient java.util.Map<K, java.util.Collection<V>> decoratedMap;
    descriptor: Ljava/util/Map;
    flags: (0x0090) ACC_FINAL, ACC_TRANSIENT
    Signature: Ljava/util/Map<TK;Ljava/util/Collection<TV;>;>;

  final org.apache.commons.collections4.multimap.AbstractMultiValuedMap this$0;
    descriptor: Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(java.util.Map<K, java.util.Collection<V>>);
    descriptor: (Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap;Ljava/util/Map;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
        start local 2 // java.util.Map map
         0: .line 783
            aload 0 /* this */
            aload 1
            putfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.this$0:Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap;
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 784
            aload 0 /* this */
            aload 2 /* map */
            putfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.decoratedMap:Ljava/util/Map;
         2: .line 785
            return
        end local 2 // java.util.Map map
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;
            0    3     2   map  Ljava/util/Map<TK;Ljava/util/Collection<TV;>;>;
    Signature: (Ljava/util/Map<TK;Ljava/util/Collection<TV;>;>;)V
    MethodParameters:
        Name  Flags
      this$0  final
      map     final

  public java.util.Set<java.util.Map$Entry<K, java.util.Collection<V>>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
         0: .line 789
            new org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap$AsMapEntrySet
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap$AsMapEntrySet.<init>:(Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;)V
            areturn
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;Ljava/util/Collection<TV;>;>;>;

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
        start local 1 // java.lang.Object key
         0: .line 794
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.decoratedMap:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;
            0    1     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   final

  public java.util.Collection<V> get();
    descriptor: (Ljava/lang/Object;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
        start local 1 // java.lang.Object key
         0: .line 799
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.decoratedMap:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Collection
            astore 2 /* collection */
        start local 2 // java.util.Collection collection
         1: .line 800
            aload 2 /* collection */
            ifnonnull 3
         2: .line 801
            aconst_null
            areturn
         3: .line 805
      StackMap locals: java.util.Collection
      StackMap stack:
            aload 1 /* key */
            astore 3 /* k */
        start local 3 // java.lang.Object k
         4: .line 806
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.this$0:Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap;
            aload 3 /* k */
            invokevirtual org.apache.commons.collections4.multimap.AbstractMultiValuedMap.wrappedCollection:(Ljava/lang/Object;)Ljava/util/Collection;
            areturn
        end local 3 // java.lang.Object k
        end local 2 // java.util.Collection collection
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;
            0    5     1         key  Ljava/lang/Object;
            1    5     2  collection  Ljava/util/Collection<TV;>;
            4    5     3           k  TK;
    Signature: (Ljava/lang/Object;)Ljava/util/Collection<TV;>;
    MethodParameters:
      Name  Flags
      key   final

  public java.util.Set<K> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
         0: .line 811
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.this$0:Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap;
            invokevirtual org.apache.commons.collections4.multimap.AbstractMultiValuedMap.keySet:()Ljava/util/Set;
            areturn
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;
    Signature: ()Ljava/util/Set<TK;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
         0: .line 816
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.decoratedMap:Ljava/util/Map;
            invokeinterface java.util.Map.size:()I
            ireturn
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;

  public java.util.Collection<V> remove();
    descriptor: (Ljava/lang/Object;)Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
        start local 1 // java.lang.Object key
         0: .line 821
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.decoratedMap:Ljava/util/Map;
            aload 1 /* key */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Collection
            astore 2 /* collection */
        start local 2 // java.util.Collection collection
         1: .line 822
            aload 2 /* collection */
            ifnonnull 3
         2: .line 823
            aconst_null
            areturn
         3: .line 826
      StackMap locals: java.util.Collection
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.this$0:Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap;
            invokevirtual org.apache.commons.collections4.multimap.AbstractMultiValuedMap.createCollection:()Ljava/util/Collection;
            astore 3 /* output */
        start local 3 // java.util.Collection output
         4: .line 827
            aload 3 /* output */
            aload 2 /* collection */
            invokeinterface java.util.Collection.addAll:(Ljava/util/Collection;)Z
            pop
         5: .line 828
            aload 2 /* collection */
            invokeinterface java.util.Collection.clear:()V
         6: .line 829
            aload 3 /* output */
            areturn
        end local 3 // java.util.Collection output
        end local 2 // java.util.Collection collection
        end local 1 // java.lang.Object key
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    7     0        this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;
            0    7     1         key  Ljava/lang/Object;
            1    7     2  collection  Ljava/util/Collection<TV;>;
            4    7     3      output  Ljava/util/Collection<TV;>;
    Signature: (Ljava/lang/Object;)Ljava/util/Collection<TV;>;
    MethodParameters:
      Name  Flags
      key   final

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
        start local 1 // java.lang.Object object
         0: .line 834
            aload 0 /* this */
            aload 1 /* object */
            if_acmpeq 1
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.decoratedMap:Ljava/util/Map;
            aload 1 /* object */
            invokeinterface java.util.Map.equals:(Ljava/lang/Object;)Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;
            0    2     1  object  Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      object  final

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
         0: .line 839
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.decoratedMap:Ljava/util/Map;
            invokeinterface java.util.Map.hashCode:()I
            ireturn
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
         0: .line 844
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.decoratedMap:Ljava/util/Map;
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
         0: .line 849
            aload 0 /* this */
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.this$0:Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap;
            invokevirtual org.apache.commons.collections4.multimap.AbstractMultiValuedMap.clear:()V
         1: .line 850
            return
        end local 0 // org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;

  public java.lang.Object get(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.get:(Ljava/lang/Object;)Ljava/util/Collection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            invokevirtual org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.remove:(Ljava/lang/Object;)Ljava/util/Collection;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static org.apache.commons.collections4.multimap.AbstractMultiValuedMap access$2(org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap);
    descriptor: (Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap$AsMap;)Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap;
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 780
            aload 0
            getfield org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap.this$0:Lorg/apache/commons/collections4/multimap/AbstractMultiValuedMap;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Ljava/util/AbstractMap<TK;Ljava/util/Collection<TV;>;>;
SourceFile: "AbstractMultiValuedMap.java"
NestHost: org.apache.commons.collections4.multimap.AbstractMultiValuedMap
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  private AsMap = org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap of org.apache.commons.collections4.multimap.AbstractMultiValuedMap
  AsMapEntrySet = org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap$AsMapEntrySet of org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap
  AsMapEntrySetIterator = org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap$AsMapEntrySetIterator of org.apache.commons.collections4.multimap.AbstractMultiValuedMap$AsMap