abstract class com.google.common.collect.Multisets$EntrySet<E> extends com.google.common.collect.Sets$ImprovedAbstractSet<com.google.common.collect.Multiset$Entry<E>>
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.google.common.collect.Multisets$EntrySet
  super_class: com.google.common.collect.Sets$ImprovedAbstractSet
{
  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Multisets$EntrySet this
         0: .line 1007
            aload 0 /* this */
            invokespecial com.google.common.collect.Sets$ImprovedAbstractSet.<init>:()V
            return
        end local 0 // com.google.common.collect.Multisets$EntrySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Multisets$EntrySet<TE;>;

  abstract com.google.common.collect.Multiset<E> multiset();
    descriptor: ()Lcom/google/common/collect/Multiset;
    flags: (0x0400) ACC_ABSTRACT
    Signature: ()Lcom/google/common/collect/Multiset<TE;>;

  public boolean contains(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.google.common.collect.Multisets$EntrySet this
        start local 1 // java.lang.Object o
         0: .line 1012
            aload 1 /* o */
            instanceof com.google.common.collect.Multiset$Entry
            ifeq 7
         1: .line 1017
            aload 1 /* o */
            checkcast com.google.common.collect.Multiset$Entry
            astore 2 /* entry */
        start local 2 // com.google.common.collect.Multiset$Entry entry
         2: .line 1018
            aload 2 /* entry */
            invokeinterface com.google.common.collect.Multiset$Entry.getCount:()I
            ifgt 4
         3: .line 1019
            iconst_0
            ireturn
         4: .line 1021
      StackMap locals: com.google.common.collect.Multiset$Entry
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.google.common.collect.Multisets$EntrySet.multiset:()Lcom/google/common/collect/Multiset;
            aload 2 /* entry */
            invokeinterface com.google.common.collect.Multiset$Entry.getElement:()Ljava/lang/Object;
            invokeinterface com.google.common.collect.Multiset.count:(Ljava/lang/Object;)I
            istore 3 /* count */
        start local 3 // int count
         5: .line 1022
            iload 3 /* count */
            aload 2 /* entry */
            invokeinterface com.google.common.collect.Multiset$Entry.getCount:()I
            if_icmpne 6
            iconst_1
            ireturn
      StackMap locals: int
      StackMap stack:
         6: iconst_0
            ireturn
        end local 3 // int count
        end local 2 // com.google.common.collect.Multiset$Entry entry
         7: .line 1024
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.google.common.collect.Multisets$EntrySet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/google/common/collect/Multisets$EntrySet<TE;>;
            0    8     1      o  Ljava/lang/Object;
            2    7     2  entry  Lcom/google/common/collect/Multiset$Entry<*>;
            5    7     3  count  I
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      o     

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=2
        start local 0 // com.google.common.collect.Multisets$EntrySet this
        start local 1 // java.lang.Object object
         0: .line 1031
            aload 1 /* object */
            instanceof com.google.common.collect.Multiset$Entry
            ifeq 7
         1: .line 1032
            aload 1 /* object */
            checkcast com.google.common.collect.Multiset$Entry
            astore 2 /* entry */
        start local 2 // com.google.common.collect.Multiset$Entry entry
         2: .line 1033
            aload 2 /* entry */
            invokeinterface com.google.common.collect.Multiset$Entry.getElement:()Ljava/lang/Object;
            astore 3 /* element */
        start local 3 // java.lang.Object element
         3: .line 1034
            aload 2 /* entry */
            invokeinterface com.google.common.collect.Multiset$Entry.getCount:()I
            istore 4 /* entryCount */
        start local 4 // int entryCount
         4: .line 1035
            iload 4 /* entryCount */
            ifeq 7
         5: .line 1038
            aload 0 /* this */
            invokevirtual com.google.common.collect.Multisets$EntrySet.multiset:()Lcom/google/common/collect/Multiset;
            astore 5 /* multiset */
        start local 5 // com.google.common.collect.Multiset multiset
         6: .line 1039
            aload 5 /* multiset */
            aload 3 /* element */
            iload 4 /* entryCount */
            iconst_0
            invokeinterface com.google.common.collect.Multiset.setCount:(Ljava/lang/Object;II)Z
            ireturn
        end local 5 // com.google.common.collect.Multiset multiset
        end local 4 // int entryCount
        end local 3 // java.lang.Object element
        end local 2 // com.google.common.collect.Multiset$Entry entry
         7: .line 1042
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object object
        end local 0 // com.google.common.collect.Multisets$EntrySet this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lcom/google/common/collect/Multisets$EntrySet<TE;>;
            0    8     1      object  Ljava/lang/Object;
            2    7     2       entry  Lcom/google/common/collect/Multiset$Entry<*>;
            3    7     3     element  Ljava/lang/Object;
            4    7     4  entryCount  I
            6    7     5    multiset  Lcom/google/common/collect/Multiset<Ljava/lang/Object;>;
    MethodParameters:
        Name  Flags
      object  

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Multisets$EntrySet this
         0: .line 1047
            aload 0 /* this */
            invokevirtual com.google.common.collect.Multisets$EntrySet.multiset:()Lcom/google/common/collect/Multiset;
            invokeinterface com.google.common.collect.Multiset.clear:()V
         1: .line 1048
            return
        end local 0 // com.google.common.collect.Multisets$EntrySet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/collect/Multisets$EntrySet<TE;>;
}
Signature: <E:Ljava/lang/Object;>Lcom/google/common/collect/Sets$ImprovedAbstractSet<Lcom/google/common/collect/Multiset$Entry<TE;>;>;
SourceFile: "Multisets.java"
NestHost: com.google.common.collect.Multisets
InnerClasses:
  public abstract Entry = com.google.common.collect.Multiset$Entry of com.google.common.collect.Multiset
  abstract EntrySet = com.google.common.collect.Multisets$EntrySet of com.google.common.collect.Multisets
  abstract ImprovedAbstractSet = com.google.common.collect.Sets$ImprovedAbstractSet of com.google.common.collect.Sets