class com.google.common.collect.Maps$6 extends com.google.common.collect.ForwardingNavigableSet<E>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.collect.Maps$6
  super_class: com.google.common.collect.ForwardingNavigableSet
{
  private final java.util.NavigableSet val$set;
    descriptor: Ljava/util/NavigableSet;
    flags: (0x1012) ACC_PRIVATE, ACC_FINAL, ACC_SYNTHETIC

  void <init>(java.util.NavigableSet);
    descriptor: (Ljava/util/NavigableSet;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$6 this
         0: .line 1159
            aload 0 /* this */
            aload 1
            putfield com.google.common.collect.Maps$6.val$set:Ljava/util/NavigableSet;
            aload 0 /* this */
            invokespecial com.google.common.collect.ForwardingNavigableSet.<init>:()V
            return
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$6;
    MethodParameters:
         Name  Flags
      val$set  final

  protected java.util.NavigableSet<E> delegate();
    descriptor: ()Ljava/util/NavigableSet;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$6 this
         0: .line 1162
            aload 0 /* this */
            getfield com.google.common.collect.Maps$6.val$set:Ljava/util/NavigableSet;
            areturn
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$6;
    Signature: ()Ljava/util/NavigableSet<TE;>;

  public boolean add();
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$6 this
        start local 1 // java.lang.Object element
         0: .line 1167
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.lang.Object element
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/common/collect/Maps$6;
            0    1     1  element  TE;
    Signature: (TE;)Z
    MethodParameters:
         Name  Flags
      element  

  public boolean addAll(java.util.Collection<? extends E>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$6 this
        start local 1 // java.util.Collection es
         0: .line 1172
            new java.lang.UnsupportedOperationException
            dup
            invokespecial java.lang.UnsupportedOperationException.<init>:()V
            athrow
        end local 1 // java.util.Collection es
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$6;
            0    1     1    es  Ljava/util/Collection<+TE;>;
    Signature: (Ljava/util/Collection<+TE;>;)Z
    MethodParameters:
      Name  Flags
      es    

  public java.util.SortedSet<E> headSet(E);
    descriptor: (Ljava/lang/Object;)Ljava/util/SortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$6 this
        start local 1 // java.lang.Object toElement
         0: .line 1177
            aload 0 /* this */
            aload 1 /* toElement */
            invokespecial com.google.common.collect.ForwardingNavigableSet.headSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            invokestatic com.google.common.collect.Maps.removeOnlySortedSet:(Ljava/util/SortedSet;)Ljava/util/SortedSet;
            areturn
        end local 1 // java.lang.Object toElement
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/Maps$6;
            0    1     1  toElement  TE;
    Signature: (TE;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
           Name  Flags
      toElement  

  public java.util.NavigableSet<E> headSet(E, boolean);
    descriptor: (Ljava/lang/Object;Z)Ljava/util/NavigableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.Maps$6 this
        start local 1 // java.lang.Object toElement
        start local 2 // boolean inclusive
         0: .line 1182
            aload 0 /* this */
            aload 1 /* toElement */
            iload 2 /* inclusive */
            invokespecial com.google.common.collect.ForwardingNavigableSet.headSet:(Ljava/lang/Object;Z)Ljava/util/NavigableSet;
            invokestatic com.google.common.collect.Maps.removeOnlyNavigableSet:(Ljava/util/NavigableSet;)Ljava/util/NavigableSet;
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Object toElement
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/Maps$6;
            0    1     1  toElement  TE;
            0    1     2  inclusive  Z
    Signature: (TE;Z)Ljava/util/NavigableSet<TE;>;
    MethodParameters:
           Name  Flags
      toElement  
      inclusive  

  public java.util.SortedSet<E> subSet(E, E);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.Maps$6 this
        start local 1 // java.lang.Object fromElement
        start local 2 // java.lang.Object toElement
         0: .line 1187
            aload 0 /* this */
            aload 1 /* fromElement */
            aload 2 /* toElement */
            invokespecial com.google.common.collect.ForwardingNavigableSet.subSet:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/util/SortedSet;
            invokestatic com.google.common.collect.Maps.removeOnlySortedSet:(Ljava/util/SortedSet;)Ljava/util/SortedSet;
            areturn
        end local 2 // java.lang.Object toElement
        end local 1 // java.lang.Object fromElement
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lcom/google/common/collect/Maps$6;
            0    1     1  fromElement  TE;
            0    1     2    toElement  TE;
    Signature: (TE;TE;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
             Name  Flags
      fromElement  
      toElement    

  public java.util.NavigableSet<E> subSet(E, boolean, E, boolean);
    descriptor: (Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.google.common.collect.Maps$6 this
        start local 1 // java.lang.Object fromElement
        start local 2 // boolean fromInclusive
        start local 3 // java.lang.Object toElement
        start local 4 // boolean toInclusive
         0: .line 1194
            aload 0 /* this */
            aload 1 /* fromElement */
            iload 2 /* fromInclusive */
            aload 3 /* toElement */
            iload 4 /* toInclusive */
            invokespecial com.google.common.collect.ForwardingNavigableSet.subSet:(Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableSet;
         1: .line 1193
            invokestatic com.google.common.collect.Maps.removeOnlyNavigableSet:(Ljava/util/NavigableSet;)Ljava/util/NavigableSet;
            areturn
        end local 4 // boolean toInclusive
        end local 3 // java.lang.Object toElement
        end local 2 // boolean fromInclusive
        end local 1 // java.lang.Object fromElement
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    2     0           this  Lcom/google/common/collect/Maps$6;
            0    2     1    fromElement  TE;
            0    2     2  fromInclusive  Z
            0    2     3      toElement  TE;
            0    2     4    toInclusive  Z
    Signature: (TE;ZTE;Z)Ljava/util/NavigableSet<TE;>;
    MethodParameters:
               Name  Flags
      fromElement    
      fromInclusive  
      toElement      
      toInclusive    

  public java.util.SortedSet<E> tailSet(E);
    descriptor: (Ljava/lang/Object;)Ljava/util/SortedSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.Maps$6 this
        start local 1 // java.lang.Object fromElement
         0: .line 1199
            aload 0 /* this */
            aload 1 /* fromElement */
            invokespecial com.google.common.collect.ForwardingNavigableSet.tailSet:(Ljava/lang/Object;)Ljava/util/SortedSet;
            invokestatic com.google.common.collect.Maps.removeOnlySortedSet:(Ljava/util/SortedSet;)Ljava/util/SortedSet;
            areturn
        end local 1 // java.lang.Object fromElement
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lcom/google/common/collect/Maps$6;
            0    1     1  fromElement  TE;
    Signature: (TE;)Ljava/util/SortedSet<TE;>;
    MethodParameters:
             Name  Flags
      fromElement  

  public java.util.NavigableSet<E> tailSet(E, boolean);
    descriptor: (Ljava/lang/Object;Z)Ljava/util/NavigableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.Maps$6 this
        start local 1 // java.lang.Object fromElement
        start local 2 // boolean inclusive
         0: .line 1204
            aload 0 /* this */
            aload 1 /* fromElement */
            iload 2 /* inclusive */
            invokespecial com.google.common.collect.ForwardingNavigableSet.tailSet:(Ljava/lang/Object;Z)Ljava/util/NavigableSet;
            invokestatic com.google.common.collect.Maps.removeOnlyNavigableSet:(Ljava/util/NavigableSet;)Ljava/util/NavigableSet;
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Object fromElement
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lcom/google/common/collect/Maps$6;
            0    1     1  fromElement  TE;
            0    1     2    inclusive  Z
    Signature: (TE;Z)Ljava/util/NavigableSet<TE;>;
    MethodParameters:
             Name  Flags
      fromElement  
      inclusive    

  public java.util.NavigableSet<E> descendingSet();
    descriptor: ()Ljava/util/NavigableSet;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.Maps$6 this
         0: .line 1209
            aload 0 /* this */
            invokespecial com.google.common.collect.ForwardingNavigableSet.descendingSet:()Ljava/util/NavigableSet;
            invokestatic com.google.common.collect.Maps.removeOnlyNavigableSet:(Ljava/util/NavigableSet;)Ljava/util/NavigableSet;
            areturn
        end local 0 // com.google.common.collect.Maps$6 this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/Maps$6;
    Signature: ()Ljava/util/NavigableSet<TE;>;

  protected java.lang.Object delegate();
    descriptor: ()Ljava/lang/Object;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.Maps$6.delegate:()Ljava/util/NavigableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.util.Collection delegate();
    descriptor: ()Ljava/util/Collection;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.Maps$6.delegate:()Ljava/util/NavigableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.util.Set delegate();
    descriptor: ()Ljava/util/Set;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.Maps$6.delegate:()Ljava/util/NavigableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  protected java.util.SortedSet delegate();
    descriptor: ()Ljava/util/SortedSet;
    flags: (0x1044) ACC_PROTECTED, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.Maps$6.delegate:()Ljava/util/NavigableSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/google/common/collect/ForwardingNavigableSet<TE;>;
SourceFile: "Maps.java"
EnclosingMethod: com.google.common.collect.Maps.removeOnlyNavigableSet:(Ljava/util/NavigableSet;)Ljava/util/NavigableSet;
NestHost: com.google.common.collect.Maps
InnerClasses:
  com.google.common.collect.Maps$6