final class java.util.TreeMap$DescendingSubMap<K, V> extends java.util.TreeMap$NavigableSubMap<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: java.util.TreeMap$DescendingSubMap
  super_class: java.util.TreeMap$NavigableSubMap
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 912986545866120460

  private final java.util.Comparator<? super K> reverseComparator;
    descriptor: Ljava/util/Comparator;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Comparator<-TK;>;

  void <init>(java.util.TreeMap<K, V>, boolean, K, boolean, boolean, K, );
    descriptor: (Ljava/util/TreeMap;ZLjava/lang/Object;ZZLjava/lang/Object;Z)V
    flags: (0x0000) 
    Code:
      stack=8, locals=8, args_size=8
        start local 0 // java.util.TreeMap$DescendingSubMap this
        start local 1 // java.util.TreeMap m
        start local 2 // boolean fromStart
        start local 3 // java.lang.Object lo
        start local 4 // boolean loInclusive
        start local 5 // boolean toEnd
        start local 6 // java.lang.Object hi
        start local 7 // boolean hiInclusive
         0: .line 1934
            aload 0 /* this */
            aload 1 /* m */
            iload 2 /* fromStart */
            aload 3 /* lo */
            iload 4 /* loInclusive */
            iload 5 /* toEnd */
            aload 6 /* hi */
            iload 7 /* hiInclusive */
            invokespecial java.util.TreeMap$NavigableSubMap.<init>:(Ljava/util/TreeMap;ZLjava/lang/Object;ZZLjava/lang/Object;Z)V
         1: .line 1937
            aload 0 /* this */
         2: .line 1938
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.m:Ljava/util/TreeMap;
            getfield java.util.TreeMap.comparator:Ljava/util/Comparator;
            invokestatic java.util.Collections.reverseOrder:(Ljava/util/Comparator;)Ljava/util/Comparator;
            putfield java.util.TreeMap$DescendingSubMap.reverseComparator:Ljava/util/Comparator;
         3: .line 1935
            return
        end local 7 // boolean hiInclusive
        end local 6 // java.lang.Object hi
        end local 5 // boolean toEnd
        end local 4 // boolean loInclusive
        end local 3 // java.lang.Object lo
        end local 2 // boolean fromStart
        end local 1 // java.util.TreeMap m
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            0    4     1            m  Ljava/util/TreeMap<TK;TV;>;
            0    4     2    fromStart  Z
            0    4     3           lo  TK;
            0    4     4  loInclusive  Z
            0    4     5        toEnd  Z
            0    4     6           hi  TK;
            0    4     7  hiInclusive  Z
    Signature: (Ljava/util/TreeMap<TK;TV;>;ZTK;ZZTK;Z)V
    MethodParameters:
             Name  Flags
      m            
      fromStart    
      lo           
      loInclusive  
      toEnd        
      hi           
      hiInclusive  

  public java.util.Comparator<? super K> comparator();
    descriptor: ()Ljava/util/Comparator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.TreeMap$DescendingSubMap this
         0: .line 1941
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.reverseComparator:Ljava/util/Comparator;
            areturn
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
    Signature: ()Ljava/util/Comparator<-TK;>;

  public java.util.NavigableMap<K, V> subMap(K, boolean, K, boolean);
    descriptor: (Ljava/lang/Object;ZLjava/lang/Object;Z)Ljava/util/NavigableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=5, args_size=5
        start local 0 // java.util.TreeMap$DescendingSubMap this
        start local 1 // java.lang.Object fromKey
        start local 2 // boolean fromInclusive
        start local 3 // java.lang.Object toKey
        start local 4 // boolean toInclusive
         0: .line 1946
            aload 0 /* this */
            aload 1 /* fromKey */
            iload 2 /* fromInclusive */
            invokevirtual java.util.TreeMap$DescendingSubMap.inRange:(Ljava/lang/Object;Z)Z
            ifne 2
         1: .line 1947
            new java.lang.IllegalArgumentException
            dup
            ldc "fromKey out of range"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1948
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 3 /* toKey */
            iload 4 /* toInclusive */
            invokevirtual java.util.TreeMap$DescendingSubMap.inRange:(Ljava/lang/Object;Z)Z
            ifne 4
         3: .line 1949
            new java.lang.IllegalArgumentException
            dup
            ldc "toKey out of range"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1950
      StackMap locals:
      StackMap stack:
            new java.util.TreeMap$DescendingSubMap
            dup
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.m:Ljava/util/TreeMap;
         5: .line 1951
            iconst_0
            aload 3 /* toKey */
            iload 4 /* toInclusive */
         6: .line 1952
            iconst_0
            aload 1 /* fromKey */
            iload 2 /* fromInclusive */
         7: .line 1950
            invokespecial java.util.TreeMap$DescendingSubMap.<init>:(Ljava/util/TreeMap;ZLjava/lang/Object;ZZLjava/lang/Object;Z)V
            areturn
        end local 4 // boolean toInclusive
        end local 3 // java.lang.Object toKey
        end local 2 // boolean fromInclusive
        end local 1 // java.lang.Object fromKey
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    8     0           this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            0    8     1        fromKey  TK;
            0    8     2  fromInclusive  Z
            0    8     3          toKey  TK;
            0    8     4    toInclusive  Z
    Signature: (TK;ZTK;Z)Ljava/util/NavigableMap<TK;TV;>;
    MethodParameters:
               Name  Flags
      fromKey        
      fromInclusive  
      toKey          
      toInclusive    

  public java.util.NavigableMap<K, V> headMap(K, boolean);
    descriptor: (Ljava/lang/Object;Z)Ljava/util/NavigableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=3, args_size=3
        start local 0 // java.util.TreeMap$DescendingSubMap this
        start local 1 // java.lang.Object toKey
        start local 2 // boolean inclusive
         0: .line 1956
            aload 0 /* this */
            aload 1 /* toKey */
            iload 2 /* inclusive */
            invokevirtual java.util.TreeMap$DescendingSubMap.inRange:(Ljava/lang/Object;Z)Z
            ifne 2
         1: .line 1957
            new java.lang.IllegalArgumentException
            dup
            ldc "toKey out of range"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1958
      StackMap locals:
      StackMap stack:
            new java.util.TreeMap$DescendingSubMap
            dup
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.m:Ljava/util/TreeMap;
         3: .line 1959
            iconst_0
            aload 1 /* toKey */
            iload 2 /* inclusive */
         4: .line 1960
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.toEnd:Z
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.hi:Ljava/lang/Object;
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.hiInclusive:Z
         5: .line 1958
            invokespecial java.util.TreeMap$DescendingSubMap.<init>:(Ljava/util/TreeMap;ZLjava/lang/Object;ZZLjava/lang/Object;Z)V
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Object toKey
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            0    6     1      toKey  TK;
            0    6     2  inclusive  Z
    Signature: (TK;Z)Ljava/util/NavigableMap<TK;TV;>;
    MethodParameters:
           Name  Flags
      toKey      
      inclusive  

  public java.util.NavigableMap<K, V> tailMap(K, boolean);
    descriptor: (Ljava/lang/Object;Z)Ljava/util/NavigableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=3, args_size=3
        start local 0 // java.util.TreeMap$DescendingSubMap this
        start local 1 // java.lang.Object fromKey
        start local 2 // boolean inclusive
         0: .line 1964
            aload 0 /* this */
            aload 1 /* fromKey */
            iload 2 /* inclusive */
            invokevirtual java.util.TreeMap$DescendingSubMap.inRange:(Ljava/lang/Object;Z)Z
            ifne 2
         1: .line 1965
            new java.lang.IllegalArgumentException
            dup
            ldc "fromKey out of range"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 1966
      StackMap locals:
      StackMap stack:
            new java.util.TreeMap$DescendingSubMap
            dup
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.m:Ljava/util/TreeMap;
         3: .line 1967
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.fromStart:Z
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.lo:Ljava/lang/Object;
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.loInclusive:Z
         4: .line 1968
            iconst_0
            aload 1 /* fromKey */
            iload 2 /* inclusive */
         5: .line 1966
            invokespecial java.util.TreeMap$DescendingSubMap.<init>:(Ljava/util/TreeMap;ZLjava/lang/Object;ZZLjava/lang/Object;Z)V
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Object fromKey
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    6     0       this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            0    6     1    fromKey  TK;
            0    6     2  inclusive  Z
    Signature: (TK;Z)Ljava/util/NavigableMap<TK;TV;>;
    MethodParameters:
           Name  Flags
      fromKey    
      inclusive  

  public java.util.NavigableMap<K, V> descendingMap();
    descriptor: ()Ljava/util/NavigableMap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=10, locals=2, args_size=1
        start local 0 // java.util.TreeMap$DescendingSubMap this
         0: .line 1972
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.descendingMapView:Ljava/util/NavigableMap;
            astore 1 /* mv */
        start local 1 // java.util.NavigableMap mv
         1: .line 1973
            aload 1 /* mv */
            ifnull 2
            aload 1 /* mv */
            goto 8
         2: .line 1974
      StackMap locals: java.util.NavigableMap
      StackMap stack:
            aload 0 /* this */
         3: .line 1975
            new java.util.TreeMap$AscendingSubMap
            dup
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.m:Ljava/util/TreeMap;
         4: .line 1976
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.fromStart:Z
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.lo:Ljava/lang/Object;
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.loInclusive:Z
         5: .line 1977
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.toEnd:Z
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.hi:Ljava/lang/Object;
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.hiInclusive:Z
         6: .line 1975
            invokespecial java.util.TreeMap$AscendingSubMap.<init>:(Ljava/util/TreeMap;ZLjava/lang/Object;ZZLjava/lang/Object;Z)V
         7: .line 1974
            dup_x1
            putfield java.util.TreeMap$DescendingSubMap.descendingMapView:Ljava/util/NavigableMap;
         8: .line 1973
      StackMap locals:
      StackMap stack: java.util.NavigableMap
            areturn
        end local 1 // java.util.NavigableMap mv
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            1    9     1    mv  Ljava/util/NavigableMap<TK;TV;>;
    Signature: ()Ljava/util/NavigableMap<TK;TV;>;

  java.util.Iterator<K> keyIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.util.TreeMap$DescendingSubMap this
         0: .line 1981
            new java.util.TreeMap$NavigableSubMap$DescendingSubMapKeyIterator
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.util.TreeMap$DescendingSubMap.absHighest:()Ljava/util/TreeMap$Entry;
            aload 0 /* this */
            invokevirtual java.util.TreeMap$DescendingSubMap.absLowFence:()Ljava/util/TreeMap$Entry;
            invokespecial java.util.TreeMap$NavigableSubMap$DescendingSubMapKeyIterator.<init>:(Ljava/util/TreeMap$NavigableSubMap;Ljava/util/TreeMap$Entry;Ljava/util/TreeMap$Entry;)V
            areturn
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
    Signature: ()Ljava/util/Iterator<TK;>;

  java.util.Spliterator<K> keySpliterator();
    descriptor: ()Ljava/util/Spliterator;
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.util.TreeMap$DescendingSubMap this
         0: .line 1985
            new java.util.TreeMap$NavigableSubMap$DescendingSubMapKeyIterator
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.util.TreeMap$DescendingSubMap.absHighest:()Ljava/util/TreeMap$Entry;
            aload 0 /* this */
            invokevirtual java.util.TreeMap$DescendingSubMap.absLowFence:()Ljava/util/TreeMap$Entry;
            invokespecial java.util.TreeMap$NavigableSubMap$DescendingSubMapKeyIterator.<init>:(Ljava/util/TreeMap$NavigableSubMap;Ljava/util/TreeMap$Entry;Ljava/util/TreeMap$Entry;)V
            areturn
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
    Signature: ()Ljava/util/Spliterator<TK;>;

  java.util.Iterator<K> descendingKeyIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0000) 
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // java.util.TreeMap$DescendingSubMap this
         0: .line 1989
            new java.util.TreeMap$NavigableSubMap$SubMapKeyIterator
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual java.util.TreeMap$DescendingSubMap.absLowest:()Ljava/util/TreeMap$Entry;
            aload 0 /* this */
            invokevirtual java.util.TreeMap$DescendingSubMap.absHighFence:()Ljava/util/TreeMap$Entry;
            invokespecial java.util.TreeMap$NavigableSubMap$SubMapKeyIterator.<init>:(Ljava/util/TreeMap$NavigableSubMap;Ljava/util/TreeMap$Entry;Ljava/util/TreeMap$Entry;)V
            areturn
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
    Signature: ()Ljava/util/Iterator<TK;>;

  public java.util.Set<java.util.Map$Entry<K, V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.util.TreeMap$DescendingSubMap this
         0: .line 1999
            aload 0 /* this */
            getfield java.util.TreeMap$DescendingSubMap.entrySetView:Ljava/util/TreeMap$NavigableSubMap$EntrySetView;
            astore 1 /* es */
        start local 1 // java.util.TreeMap$NavigableSubMap$EntrySetView es
         1: .line 2000
            aload 1 /* es */
            ifnull 2
            aload 1 /* es */
            goto 3
      StackMap locals: java.util.TreeMap$NavigableSubMap$EntrySetView
      StackMap stack:
         2: aload 0 /* this */
            new java.util.TreeMap$DescendingSubMap$DescendingEntrySetView
            dup
            aload 0 /* this */
            invokespecial java.util.TreeMap$DescendingSubMap$DescendingEntrySetView.<init>:(Ljava/util/TreeMap$DescendingSubMap;)V
            dup_x1
            putfield java.util.TreeMap$DescendingSubMap.entrySetView:Ljava/util/TreeMap$NavigableSubMap$EntrySetView;
      StackMap locals:
      StackMap stack: java.util.TreeMap$NavigableSubMap$EntrySetView
         3: areturn
        end local 1 // java.util.TreeMap$NavigableSubMap$EntrySetView es
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            1    4     1    es  Ljava/util/TreeMap$NavigableSubMap<TK;TV;>.EntrySetView;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  java.util.TreeMap$Entry<K, V> subLowest();
    descriptor: ()Ljava/util/TreeMap$Entry;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.TreeMap$DescendingSubMap this
         0: .line 2003
            aload 0 /* this */
            invokevirtual java.util.TreeMap$DescendingSubMap.absHighest:()Ljava/util/TreeMap$Entry;
            areturn
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
    Signature: ()Ljava/util/TreeMap$Entry<TK;TV;>;

  java.util.TreeMap$Entry<K, V> subHighest();
    descriptor: ()Ljava/util/TreeMap$Entry;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.TreeMap$DescendingSubMap this
         0: .line 2004
            aload 0 /* this */
            invokevirtual java.util.TreeMap$DescendingSubMap.absLowest:()Ljava/util/TreeMap$Entry;
            areturn
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
    Signature: ()Ljava/util/TreeMap$Entry<TK;TV;>;

  java.util.TreeMap$Entry<K, V> subCeiling(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/TreeMap$Entry;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.TreeMap$DescendingSubMap this
        start local 1 // java.lang.Object key
         0: .line 2005
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual java.util.TreeMap$DescendingSubMap.absFloor:(Ljava/lang/Object;)Ljava/util/TreeMap$Entry;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)Ljava/util/TreeMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   

  java.util.TreeMap$Entry<K, V> subHigher(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/TreeMap$Entry;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.TreeMap$DescendingSubMap this
        start local 1 // java.lang.Object key
         0: .line 2006
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual java.util.TreeMap$DescendingSubMap.absLower:(Ljava/lang/Object;)Ljava/util/TreeMap$Entry;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)Ljava/util/TreeMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   

  java.util.TreeMap$Entry<K, V> subFloor(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/TreeMap$Entry;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.TreeMap$DescendingSubMap this
        start local 1 // java.lang.Object key
         0: .line 2007
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual java.util.TreeMap$DescendingSubMap.absCeiling:(Ljava/lang/Object;)Ljava/util/TreeMap$Entry;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)Ljava/util/TreeMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   

  java.util.TreeMap$Entry<K, V> subLower(K);
    descriptor: (Ljava/lang/Object;)Ljava/util/TreeMap$Entry;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.TreeMap$DescendingSubMap this
        start local 1 // java.lang.Object key
         0: .line 2008
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual java.util.TreeMap$DescendingSubMap.absHigher:(Ljava/lang/Object;)Ljava/util/TreeMap$Entry;
            areturn
        end local 1 // java.lang.Object key
        end local 0 // java.util.TreeMap$DescendingSubMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/TreeMap$DescendingSubMap<TK;TV;>;
            0    1     1   key  TK;
    Signature: (TK;)Ljava/util/TreeMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/util/TreeMap$NavigableSubMap<TK;TV;>;
SourceFile: "TreeMap.java"
NestHost: java.util.TreeMap
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  final AscendingSubMap = java.util.TreeMap$AscendingSubMap of java.util.TreeMap
  final DescendingSubMap = java.util.TreeMap$DescendingSubMap of java.util.TreeMap
  final DescendingEntrySetView = java.util.TreeMap$DescendingSubMap$DescendingEntrySetView of java.util.TreeMap$DescendingSubMap
  final Entry = java.util.TreeMap$Entry of java.util.TreeMap
  abstract NavigableSubMap = java.util.TreeMap$NavigableSubMap of java.util.TreeMap
  final DescendingSubMapKeyIterator = java.util.TreeMap$NavigableSubMap$DescendingSubMapKeyIterator of java.util.TreeMap$NavigableSubMap
  final SubMapKeyIterator = java.util.TreeMap$NavigableSubMap$SubMapKeyIterator of java.util.TreeMap$NavigableSubMap