final class com.google.common.collect.Maps$FilteredMapValues<K, V> extends com.google.common.collect.Maps$Values<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.collect.Maps$FilteredMapValues
  super_class: com.google.common.collect.Maps$Values
{
  final java.util.Map<K, V> unfiltered;
    descriptor: Ljava/util/Map;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/Map<TK;TV;>;

  final com.google.common.base.Predicate<? super java.util.Map$Entry<K, V>> predicate;
    descriptor: Lcom/google/common/base/Predicate;
    flags: (0x0010) ACC_FINAL
    Signature: Lcom/google/common/base/Predicate<-Ljava/util/Map$Entry<TK;TV;>;>;

  void <init>(java.util.Map<K, V>, java.util.Map<K, V>, com.google.common.base.Predicate<? super java.util.Map$Entry<K, V>>);
    descriptor: (Ljava/util/Map;Ljava/util/Map;Lcom/google/common/base/Predicate;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=4, args_size=4
        start local 0 // com.google.common.collect.Maps$FilteredMapValues this
        start local 1 // java.util.Map filteredMap
        start local 2 // java.util.Map unfiltered
        start local 3 // com.google.common.base.Predicate predicate
         0: .line 2757
            aload 0 /* this */
            aload 1 /* filteredMap */
            invokespecial com.google.common.collect.Maps$Values.<init>:(Ljava/util/Map;)V
         1: .line 2758
            aload 0 /* this */
            aload 2 /* unfiltered */
            putfield com.google.common.collect.Maps$FilteredMapValues.unfiltered:Ljava/util/Map;
         2: .line 2759
            aload 0 /* this */
            aload 3 /* predicate */
            putfield com.google.common.collect.Maps$FilteredMapValues.predicate:Lcom/google/common/base/Predicate;
         3: .line 2760
            return
        end local 3 // com.google.common.base.Predicate predicate
        end local 2 // java.util.Map unfiltered
        end local 1 // java.util.Map filteredMap
        end local 0 // com.google.common.collect.Maps$FilteredMapValues this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lcom/google/common/collect/Maps$FilteredMapValues<TK;TV;>;
            0    4     1  filteredMap  Ljava/util/Map<TK;TV;>;
            0    4     2   unfiltered  Ljava/util/Map<TK;TV;>;
            0    4     3    predicate  Lcom/google/common/base/Predicate<-Ljava/util/Map$Entry<TK;TV;>;>;
    Signature: (Ljava/util/Map<TK;TV;>;Ljava/util/Map<TK;TV;>;Lcom/google/common/base/Predicate<-Ljava/util/Map$Entry<TK;TV;>;>;)V
    MethodParameters:
             Name  Flags
      filteredMap  
      unfiltered   
      predicate    

  public boolean remove(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.Maps$FilteredMapValues this
        start local 1 // java.lang.Object o
         0: .line 2764
            aload 0 /* this */
            getfield com.google.common.collect.Maps$FilteredMapValues.unfiltered:Ljava/util/Map;
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2 /* entryItr */
        start local 2 // java.util.Iterator entryItr
         1: .line 2765
            goto 6
         2: .line 2766
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* entryItr */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* entry */
        start local 3 // java.util.Map$Entry entry
         3: .line 2767
            aload 0 /* this */
            getfield com.google.common.collect.Maps$FilteredMapValues.predicate:Lcom/google/common/base/Predicate;
            aload 3 /* entry */
            invokeinterface com.google.common.base.Predicate.apply:(Ljava/lang/Object;)Z
            ifeq 6
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            aload 1 /* o */
            invokestatic com.google.common.base.Objects.equal:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         4: .line 2768
            aload 2 /* entryItr */
            invokeinterface java.util.Iterator.remove:()V
         5: .line 2769
            iconst_1
            ireturn
        end local 3 // java.util.Map$Entry entry
         6: .line 2765
      StackMap locals:
      StackMap stack:
            aload 2 /* entryItr */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         7: .line 2772
            iconst_0
            ireturn
        end local 2 // java.util.Iterator entryItr
        end local 1 // java.lang.Object o
        end local 0 // com.google.common.collect.Maps$FilteredMapValues this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/google/common/collect/Maps$FilteredMapValues<TK;TV;>;
            0    8     1         o  Ljava/lang/Object;
            1    8     2  entryItr  Ljava/util/Iterator<Ljava/util/Map$Entry<TK;TV;>;>;
            3    6     3     entry  Ljava/util/Map$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      o     

  public boolean removeAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.google.common.collect.Maps$FilteredMapValues this
        start local 1 // java.util.Collection collection
         0: .line 2777
            aload 0 /* this */
            getfield com.google.common.collect.Maps$FilteredMapValues.unfiltered:Ljava/util/Map;
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2 /* entryItr */
        start local 2 // java.util.Iterator entryItr
         1: .line 2778
            iconst_0
            istore 3 /* result */
        start local 3 // boolean result
         2: .line 2779
            goto 7
         3: .line 2780
      StackMap locals: java.util.Iterator int
      StackMap stack:
            aload 2 /* entryItr */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 4 /* entry */
        start local 4 // java.util.Map$Entry entry
         4: .line 2781
            aload 0 /* this */
            getfield com.google.common.collect.Maps$FilteredMapValues.predicate:Lcom/google/common/base/Predicate;
            aload 4 /* entry */
            invokeinterface com.google.common.base.Predicate.apply:(Ljava/lang/Object;)Z
            ifeq 7
            aload 1 /* collection */
            aload 4 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifeq 7
         5: .line 2782
            aload 2 /* entryItr */
            invokeinterface java.util.Iterator.remove:()V
         6: .line 2783
            iconst_1
            istore 3 /* result */
        end local 4 // java.util.Map$Entry entry
         7: .line 2779
      StackMap locals:
      StackMap stack:
            aload 2 /* entryItr */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 2786
            iload 3 /* result */
            ireturn
        end local 3 // boolean result
        end local 2 // java.util.Iterator entryItr
        end local 1 // java.util.Collection collection
        end local 0 // com.google.common.collect.Maps$FilteredMapValues this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lcom/google/common/collect/Maps$FilteredMapValues<TK;TV;>;
            0    9     1  collection  Ljava/util/Collection<*>;
            1    9     2    entryItr  Ljava/util/Iterator<Ljava/util/Map$Entry<TK;TV;>;>;
            2    9     3      result  Z
            4    7     4       entry  Ljava/util/Map$Entry<TK;TV;>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public boolean retainAll(java.util.Collection<?>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // com.google.common.collect.Maps$FilteredMapValues this
        start local 1 // java.util.Collection collection
         0: .line 2791
            aload 0 /* this */
            getfield com.google.common.collect.Maps$FilteredMapValues.unfiltered:Ljava/util/Map;
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2 /* entryItr */
        start local 2 // java.util.Iterator entryItr
         1: .line 2792
            iconst_0
            istore 3 /* result */
        start local 3 // boolean result
         2: .line 2793
            goto 7
         3: .line 2794
      StackMap locals: java.util.Iterator int
      StackMap stack:
            aload 2 /* entryItr */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 4 /* entry */
        start local 4 // java.util.Map$Entry entry
         4: .line 2795
            aload 0 /* this */
            getfield com.google.common.collect.Maps$FilteredMapValues.predicate:Lcom/google/common/base/Predicate;
            aload 4 /* entry */
            invokeinterface com.google.common.base.Predicate.apply:(Ljava/lang/Object;)Z
            ifeq 7
            aload 1 /* collection */
            aload 4 /* entry */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokeinterface java.util.Collection.contains:(Ljava/lang/Object;)Z
            ifne 7
         5: .line 2796
            aload 2 /* entryItr */
            invokeinterface java.util.Iterator.remove:()V
         6: .line 2797
            iconst_1
            istore 3 /* result */
        end local 4 // java.util.Map$Entry entry
         7: .line 2793
      StackMap locals:
      StackMap stack:
            aload 2 /* entryItr */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         8: .line 2800
            iload 3 /* result */
            ireturn
        end local 3 // boolean result
        end local 2 // java.util.Iterator entryItr
        end local 1 // java.util.Collection collection
        end local 0 // com.google.common.collect.Maps$FilteredMapValues this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    9     0        this  Lcom/google/common/collect/Maps$FilteredMapValues<TK;TV;>;
            0    9     1  collection  Ljava/util/Collection<*>;
            1    9     2    entryItr  Ljava/util/Iterator<Ljava/util/Map$Entry<TK;TV;>;>;
            2    9     3      result  Z
            4    7     4       entry  Ljava/util/Map$Entry<TK;TV;>;
    Signature: (Ljava/util/Collection<*>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public java.lang.Object[] toArray();
    descriptor: ()[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$FilteredMapValues this
         0: .line 2806
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$FilteredMapValues.iterator:()Ljava/util/Iterator;
            invokestatic com.google.common.collect.Lists.newArrayList:(Ljava/util/Iterator;)Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.toArray:()[Ljava/lang/Object;
            areturn
        end local 0 // com.google.common.collect.Maps$FilteredMapValues this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$FilteredMapValues<TK;TV;>;

  public <T> T[] toArray();
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$FilteredMapValues this
        start local 1 // java.lang.Object[] array
         0: .line 2811
            aload 0 /* this */
            invokevirtual com.google.common.collect.Maps$FilteredMapValues.iterator:()Ljava/util/Iterator;
            invokestatic com.google.common.collect.Lists.newArrayList:(Ljava/util/Iterator;)Ljava/util/ArrayList;
            aload 1 /* array */
            invokevirtual java.util.ArrayList.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            areturn
        end local 1 // java.lang.Object[] array
        end local 0 // com.google.common.collect.Maps$FilteredMapValues this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/Maps$FilteredMapValues<TK;TV;>;
            0    1     1  array  [Ljava/lang/Object;
    Signature: <T:Ljava/lang/Object;>([TT;)[TT;
    MethodParameters:
       Name  Flags
      array  
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Lcom/google/common/collect/Maps$Values<TK;TV;>;
SourceFile: "Maps.java"
NestHost: com.google.common.collect.Maps
InnerClasses:
  private final FilteredMapValues = com.google.common.collect.Maps$FilteredMapValues of com.google.common.collect.Maps
  Values = com.google.common.collect.Maps$Values of com.google.common.collect.Maps
  public abstract Entry = java.util.Map$Entry of java.util.Map